gluon
    Preparing search index...

    Class GuildManager

    Manages all guilds belonging to this client.

    Hierarchy (View Summary)

    Implements

    • GuildManager
    Index

    Constructors

    Properties

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

    Accessors

    • get size(): number

      Returns the size of the cache.

      Returns number

    Methods

    • Fetches a value from the rules cache.

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | Guild>

      The fetched value.

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

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | Guild>

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

      Returns Guild[]

    • Adds a guild to the cache.

      Parameters

      • id: string

        The ID of the guild to cache

      • guild: Guild

        The guild to cache.

      Returns void

    • Returns the cache manager.

      Parameters

      • client: Client

        The client instance.

      Returns GuildManager

    • Gets a guild from the cache.

      Parameters

      • client: Client

        The client instance.

      • guildId: string

        The ID of the guild to get.

      Returns null | Guild