Abstract

CachedManager

export abstract class CachedManager<Key, Holds, Resolvable> extends DataManager<Key, Holds, Resolvable>
export abstract class CachedManager<Key, Holds, Resolvable> extends DataManager<Key, Holds, Resolvable>
Manages the API methods of a data model with a mutable cache of instances.

Extends

DataManager<Key, Holds, Resolvable>
NameConstraintsOptionalDefaultDescription
KeyNoNone
HoldsNoNone
ResolvableNoNone
constructor(client, holds, iterable?)
Constructs a new instance of the CachedManager class
NameTypeOptionalDescription
clientClient<true>NoNone
holdsConstructable<Holds>NoNone
iterableIterable<Holds>YesNone
Readonly
cache:Collection<Key, Holds>
The cache of items for this manager.
Inherited from DataManager
Readonly
client:Client
The client that instantiated this Manager
Inherited from BaseManager
Readonly
holds:Constructable<Holds>
The data structure belonging to this manager.
Inherited from DataManager
resolve(idOrInstance):Holds
Resolves a data entry to a data Object.
Returns
An instance from this Manager
NameTypeOptionalDescription
idOrInstanceHoldsNoThe id or instance of something in this Manager
resolveId(idOrInstance):Key
Resolves a data entry to an instance id.
Returns
NameTypeOptionalDescription
idOrInstanceKey | HoldsNoThe id or instance of something in this Manager
valueOf():Collection<Key, Holds>