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

    Type Alias PubcompPacket

    PUBCOMP packet - Publish complete (QoS 2, part 3).

    MQTT 5.0 §3.7

    type PubcompPacket = {
        packetId: number;
        properties?: PubAckProperties;
        reasonCode?: ReasonCode;
        type: typeof PUBCOMP;
    }
    Index

    Properties

    packetId: number

    Packet identifier

    properties?: PubAckProperties

    PUBCOMP properties (5.0)

    reasonCode?: ReasonCode

    Reason code (5.0, defaults to 0x00)

    type: typeof PUBCOMP

    Packet type discriminator.