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

    Type Alias PubackPacket

    PUBACK packet - Publish acknowledgement (QoS 1).

    MQTT 5.0 §3.4

    type PubackPacket = {
        packetId: number;
        properties?: PubAckProperties;
        reasonCode?: ReasonCode;
        type: typeof PUBACK;
    }
    Index

    Properties

    packetId: number

    Packet identifier

    properties?: PubAckProperties

    PUBACK properties (5.0)

    reasonCode?: ReasonCode

    Reason code (5.0, defaults to 0x00)

    type: typeof PUBACK

    Packet type discriminator.