Class BaseManager<T, ApiObject>

Type Parameters

  • T extends Base
  • ApiObject extends {
        id: number;
    }

Hierarchy (view full)

Constructors

Properties

Accessors

Methods

Constructors

Properties

cache: Collection<string, T>
cacheSize: number

Accessors

Methods

  • Adds or updates an entry in the cache.

    Parameters

    • data: ApiObject

      The data to be added or updated in the cache.

    • Optionalcache: boolean
    • Optional__namedParameters: {
          extras?: unknown[];
          id?: string;
      }
      • Optionalextras?: unknown[]
      • Optionalid?: string

    Returns T

    The cached or newly created entry.

  • Removes an entry from the cache.

    Parameters

    • id: string

      The ID of the entry to remove.

    Returns boolean

    Whether the entry was successfully removed.

  • Resolves an entry from the cache.

    Parameters

    • idOrInstance: any

      The ID or instance to resolve.

    Returns null | T

    The resolved entry or null if not found.

  • Resolves the ID of an entry from the cache.

    Parameters

    • idOrInstance: any

      The ID or instance to resolve.

    Returns null | string

    The resolved ID or null if not found.