gluon
    Preparing search index...

    Class GuildEmojisManager

    Manages all emojis within a guild.

    Hierarchy (View Summary)

    Implements

    • GuildEmojisManager
    Index

    Constructors

    Properties

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

    Accessors

    • get size(): number

      Returns the size of the cache.

      Returns number

    Methods

    • Fetches a particular emoji that belongs to this guild.

      Parameters

      • emojiId: string

        The id of the emoji to fetch.

      Returns Promise<Emoji>

      The fetched emoji.

    • Fetches a value from the rules cache.

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | Emoji>

      The fetched value.

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

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | Emoji>

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

      Returns Emoji[]

    • Adds an emoji to the cache.

      Parameters

      • id: string

        The ID of the emoji to cache.

      • emoji: Emoji

        The emoji to cache.

      Returns void

    • Parameters

      • client: Client
      • guildId: string
      • emojiId: string

      Returns Promise<Emoji>

    • Parameters

      • client: Client
      • guildId: string
      • emojiId: string

      Returns null | Emoji