MemoryDelegateCache<D extends Object, P extends Object> class abstract

Memory cache abstraction to handle cache size, LRU, etc (later)

Constructors

MemoryDelegateCache()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

delete(P key) → void
Deletes the value for key
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
updateAll(D update(P key, D value)) → void
Updates all values

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](P key) → D?
Gets the value for key or null
operator []=(P key, D value) → void
Sets the value for key or null