@qualithm/mqtt-wire - v0.1.5
    Preparing search index...

    Type Alias QoS2OutboundFlow

    QoS 2 outbound flow state (server → client).

    Server sends PUBLISH → awaits PUBREC → sends PUBREL → awaits PUBCOMP.

    type QoS2OutboundFlow = {
        packet: PublishPacket;
        packetId: number;
        retryCount: number;
        sentAt: number;
        state: QoS2OutboundState;
        type: "qos2-outbound";
    }
    Index

    Properties

    The PUBLISH packet being tracked.

    packetId: number

    Packet identifier.

    retryCount: number

    Number of retransmission attempts.

    sentAt: number

    Timestamp when the packet was sent.

    Current flow state.

    type: "qos2-outbound"

    Flow type discriminator.