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

    Type Alias QoS1InboundFlow

    QoS 1 inbound flow state (client → server).

    Server receives PUBLISH → sends PUBACK to client.

    type QoS1InboundFlow = {
        packet: PublishPacket;
        packetId: number;
        receivedAt: number;
        type: "qos1-inbound";
    }
    Index

    Properties

    The PUBLISH packet being tracked.

    packetId: number

    Packet identifier.

    receivedAt: number

    Timestamp when the packet was received.

    type: "qos1-inbound"

    Flow type discriminator.