Documentation
    Preparing search index...

    Variable ReliableChannelEventConst

    ReliableChannelEvent: {
        IrretrievableMessage: string;
        MessageAcknowledged: string;
        MessagePossiblyAcknowledged: string;
        MessageReceived: string;
        MessageSent: string;
        SendingMessage: string;
        SendingMessageIrrecoverableError: string;
    } = ...

    Type declaration

    • IrretrievableMessage: string

      We are aware of a missing message but failed to retrieve it successfully.

    • MessageAcknowledged: string

      The message was fully acknowledged by other members of the channel

    • MessagePossiblyAcknowledged: string

      A received bloom filter seems to indicate that the messages was received by another party.

      However, this is probabilistic. The retry mechanism will wait a bit longer before trying to send the message again.

    • MessageReceived: string

      A new message has been received.

    • MessageSent: string

      The message has been sent over the wire but has not been acknowledged by any other party yet.

      We are now waiting for acknowledgements.

      This event may be emitted several times if the several times if the retry mechanisms kicks in.

    • SendingMessage: string

      The message is being sent over the wire.

      This event may be emitted several times if the retry mechanism kicks in.

    • SendingMessageIrrecoverableError: string

      It was not possible to send the messages due to a non-recoverable error, most likely an internal error for a developer to resolve.