gluon
    Preparing search index...

    Class GuildVoiceStatesManager

    Manages all voice states belonging to a guild.

    Hierarchy (View Summary)

    Implements

    • GuildVoiceStatesManager
    Index

    Constructors

    Properties

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

    Accessors

    • get size(): number

      Returns the size of the cache.

      Returns number

    Methods

    • Deletes a key from the cache.

      Parameters

      • key: string

        The key to delete.

      Returns boolean

      Whether the key was deleted or not.

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

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | VoiceState>

      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, VoiceState],
            index: number,
            array: [string, VoiceState][],
        ) => unknown

      Returns VoiceState[]

    • Adds a voice state to the cache.

      Parameters

      • id: string

        The ID of the voice state to cache.

      • voiceState: VoiceState

        The voice state to cache.

      Returns void