gluon
    Preparing search index...

    Class GuildScheduledEventManager

    The base cache manager for all cache managers.

    Hierarchy (View Summary)

    Implements

    • GuildScheduledEventManager
    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 scheduled event from the API.

      Parameters

      • scheduledEventId: string

        The ID of the event to fetch.

      Returns Promise<ScheduledEvent>

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

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | ScheduledEvent>

      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.

    • Retrieves all scheduled events for this guild.

      Returns Promise<ScheduledEvent[]>

    • Parameters

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

      Returns ScheduledEvent[]

    • Parameters

      • client: Client
      • guildId: string
      • scheduledEventId: string

      Returns Promise<ScheduledEvent>

    • Parameters

      • client: Client
      • guildId: string
      • eventId: string

      Returns null | ScheduledEvent