Class Web3CustomPromiEvent<ResolveType, EventMap>

Custom implementation of an event emitter for Web3 events that extends Promise functionality

Type Parameters

  • ResolveType

    The type that the promise will resolve to

  • EventMap extends Web3CustomEventMap

    The map of possible events that can be emitted

Hierarchy

  • Web3EventEmitter<EventMap>
    • Web3CustomPromiEvent

Constructors

Properties

_promise: Promise<ResolveType>

Methods

  • Attaches a callback for only the rejection of the Promise

    Type Parameters

    • TResult = never

    Parameters

    • Optional onrejected: ((reason) => TResult | PromiseLike<TResult>)

      The callback to execute when the Promise is rejected

    Returns Promise<ResolveType | TResult>

    A Promise for the completion of the callback

  • Emits an event with the given parameters

    Type Parameters

    • K extends string

    Parameters

    • eventName: K

      The name of the event to emit

    • params: EventMap[K]

      The parameters to pass to the event listeners

    Returns void

  • Returns an array of event names that have registered listeners

    Returns (string | symbol)[]

    Array of event names

  • Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected)

    Parameters

    • Optional onfinally: (() => void)

      The callback to execute when the Promise is settled

        • (): void
        • Returns void

    Returns Promise<ResolveType>

    A Promise for the completion of the callback

  • Returns the maximum number of listeners that can be registered before a warning is issued

    Returns number

    The maximum number of listeners

  • Returns the number of listeners for a specific event

    Type Parameters

    • K extends string

    Parameters

    • eventName: K

      The name of the event to count listeners for

    Returns number

    The number of listeners

  • Returns an array of listeners for a specific event

    Type Parameters

    • K extends string

    Parameters

    • eventName: K

      The name of the event to get listeners for

    Returns Function[]

    Array of listener functions

  • Removes a specific listener for an event

    Type Parameters

    • K extends string

    Parameters

    Returns void

  • Adds a listener for a specific event that will be called every time the event is emitted

    Type Parameters

    • K extends string

    Parameters

    • eventName: K

      The name of the event to listen for

    • fn: Web3EventCallback<EventMap[K]>

      The callback function to execute when the event is emitted

    Returns this

    The instance of Web3CustomPromiEvent for chaining

  • Adds a one-time listener for a specific event that will be removed after being called once

    Type Parameters

    • K extends string

    Parameters

    • eventName: K

      The name of the event to listen for

    • fn: Web3EventCallback<EventMap[K]>

      The callback function to execute when the event is emitted

    Returns this

    The instance of Web3CustomPromiEvent for chaining

  • Removes all listeners for all events

    Returns void

  • Sets the maximum number of listeners before a warning is issued

    Parameters

    • maxListenersWarningThreshold: number

      The maximum number of listeners

    Returns void