rxpoweredup
    Preparing search index...

    Type Alias OutboundMessengerConfig

    Configuration for the outbound messenger.

    type OutboundMessengerConfig = {
        initialMessageSendRetryDelayMs: number;
        maxMessageSendAttempts: number;
        messageSendTimeout: number;
        outgoingMessageMiddleware: IMessageMiddleware[];
        useLinuxWorkaround?: boolean;
    }
    Index

    Properties

    initialMessageSendRetryDelayMs: number

    The initial delay between retries when sending a message. Used as the base for exponential backoff

    maxMessageSendAttempts: number

    The maximum number of message send attempts before giving up

    messageSendTimeout: number

    The amount of time to wait for a message to be sent before timing out

    outgoingMessageMiddleware: IMessageMiddleware[]

    The middleware to apply to outgoing messages before sending them

    useLinuxWorkaround?: boolean

    Whether to use the workaround for breaking connections on Linux Chrome. Defaults to false.