gluon
    Preparing search index...

    Class GuildChannelsManager

    Manages all channels within a guild.

    Hierarchy (View Summary)

    Implements

    • GuildChannelsManager
    Index

    Constructors

    Properties

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

    Accessors

    • get size(): number

      Returns the size of the cache.

      Returns number

    Methods

    • Fetches a particular channel belonging to this guild.

      Parameters

      • channel_id: string

        The id of the channel to fetch.

      Returns Promise<AllChannels>

      The fetched channel.

    • Fetches a value from the rules cache.

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | AllChannels>

      The fetched value.

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

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | AllChannels>

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

      Returns AllChannels[]

    • Adds a channel to the cache.

      Parameters

      • id: string

        The ID of the channel to cache.

      • channel: AllChannels

        The channel to cache.

      • Optionalexpiry: number

      Returns void

    • Parameters

      • client: Client
      • guildId: string
      • channelId: string

      Returns Promise<AllChannels>

    • Parameters

      • client: Client
      • guildId: string
      • channelId: string

      Returns null | AllChannels