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

    Type Alias PubrecPacket

    PUBREC packet - Publish received (QoS 2, part 1).

    MQTT 5.0 §3.5

    type PubrecPacket = {
        packetId: number;
        properties?: PubAckProperties;
        reasonCode?: ReasonCode;
        type: typeof PUBREC;
    }
    Index

    Properties

    packetId: number

    Packet identifier

    properties?: PubAckProperties

    PUBREC properties (5.0)

    reasonCode?: ReasonCode

    Reason code (5.0, defaults to 0x00)

    type: typeof PUBREC

    Packet type discriminator.