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

    Type Alias QoS2InboundFlow

    QoS 2 inbound flow state (client → server).

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

    type QoS2InboundFlow = {
        packet: PublishPacket;
        packetId: number;
        receivedAt: number;
        state: QoS2InboundState;
        type: "qos2-inbound";
    }
    Index

    Properties

    The PUBLISH packet being tracked.

    packetId: number

    Packet identifier.

    receivedAt: number

    Timestamp when the packet was received.

    Current flow state.

    type: "qos2-inbound"

    Flow type discriminator.