Type Alias ReceiveMessageFn<T>

ReceiveMessageFn: (incoming: IIncomingMessage) => Promise<T>

Type representing a function for receiving messages.

Type Parameters

  • T = void

    The return type of the receive operation, defaults to void.

Type declaration

    • (incoming: IIncomingMessage): Promise<T>
    • Parameters

      Returns Promise<T>

      A promise resolving to the result of the receive operation, or the result directly.