Class Callbacks<Types>

Manages event callbacks with features like one-time execution, protection, and delays.

Type Parameters

Constructors

Accessors

Methods

Constructors

Accessors

Methods

  • Registers a callback for an event.

    Type Parameters

    • T extends string | number | symbol

    Parameters

    • target: T

      Event name to associate the callback with.

    • action: TCallbacksAction<Types[T]>

      Function to execute on the event.

    • settings: ICallbacksSettings = {}

      Optional callback settings (e.g., timeout, one-time).

    Returns { id: string; remove: () => boolean }

    Callback ID and a removal function.

  • Triggers all callbacks for a given event.

    Type Parameters

    • T extends string | number | symbol

    Parameters

    • target: T

      Event name to trigger.

    • arg: Types[T]

      Argument to pass to the callbacks.

    Returns void

  • Adds a callback and returns a destructor to remove it.

    Type Parameters

    • T extends string | number | symbol

    Parameters

    • target: T

      Event name to associate the callback with.

    • action: TCallbacksAction<Types[T]>

      Function to execute on the event.

    • settings: ICallbacksSettings = {}

      Optional callback settings (e.g., timeout, one-time).

    Returns () => void

    A function to remove the callback.

  • Removes a callback by its ID.

    Parameters

    • id: string

      ID of the callback to remove.

    Returns boolean

    true if the callback was removed, false otherwise.