gluon
    Preparing search index...

    Class ChannelMessageManager

    Manages all messages within a channel.

    Hierarchy (View Summary)

    Implements

    • ChannelMessageManager
    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.

    • Parameters

      • options: string | { after?: string; around?: string; before?: string; limit?: number }

      Returns Promise<Message | Message[]>

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

      Parameters

      • key: string

        The key to fetch.

      Returns Promise<null | Message>

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

      Returns Message[]

    • Adds a message to the cache.

      Parameters

      • id: string

        The ID of the message to cache.

      • message: Message

        The message to cache.

      Returns void

    • Parameters

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

      Returns Promise<Message>

    • Fetches a collection of messages from the channel.

      Parameters

      • client: Client

        The client instance.

      • guildId: string

        The ID of the guild.

      • channelId: string

        The ID of the channel.

      • options: { after?: string; around?: string; before?: string; limit?: number } = {}

        The options for fetching messages.

        • Optionalafter?: string

          The ID of the message to fetch messages after.

        • Optionalaround?: string

          The ID of the message to fetch messages around.

        • Optionalbefore?: string

          The ID of the message to fetch messages before.

        • Optionallimit?: number

          The maximum number of messages to fetch.

      Returns Promise<Message[]>

    • Returns the cache manager.

      Parameters

      • client: Client

        The client instance.

      • guildId: string

        The ID of the guild.

      • channelId: string

        The ID of the channel.

      Returns ChannelMessageManager

    • Gets a message from the cache.

      Parameters

      • client: Client

        The client instance.

      • guildId: string

        The ID of the guild.

      • channelId: string

        The ID of the channel.

      • messageId: string

        The ID of the message.

      Returns null | Message

    • Bulk deletes channel messages.

      Parameters

      • client: Client

        The client instance.

      • guildId: string
      • channelId: string

        The id of the channel to purge messages in.

      • messages: string[]

        An array of message ids to delete.

      • __namedParameters: { reason?: string } = {}

      Returns Promise<void>