gluon
    Preparing search index...

    Class UserManager

    Manages all the users belonging to a client.

    Hierarchy (View Summary)

    Implements

    • UserManager
    Index

    Constructors

    Properties

    identifier: StructureIdentifiers = ...
    rules: GluonCacheRuleSetStructure<any> = {}

    Accessors

    • get size(): number

      Returns the size of the cache.

      Returns number

    Methods

    • Fetches a particular user.

      Parameters

      • userId: string

        The id of the user to fetch.

      Returns Promise<User>

      The fetched user.

    • Fetches a value from the rules cache.

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | User>

      The fetched value.

    • Fetches a value from the cache or from the rules cache.

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | User>

      The fetched value.

    • Checks if a key exists in the cache.

      Parameters

      • key: string

        The key to check.

      Returns boolean

      Whether the key exists or not.

    • Parameters

      • callbackfn: (value: [string, User], index: number, array: [string, User][]) => unknown

      Returns User[]

    • Adds a user to the cache.

      Parameters

      • id: string

        The ID of the user to cache.

      • user: User

        The user to cache.

      Returns void

    • Parameters

      • client: Client
      • userId: string

      Returns Promise<User>