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

    Type Alias SubackPacket

    SUBACK packet - Subscribe acknowledgement.

    MQTT 5.0 §3.9

    type SubackPacket = {
        packetId: number;
        properties?: SubackProperties;
        reasonCodes: readonly ReasonCode[];
        type: typeof SUBACK;
    }
    Index

    Properties

    packetId: number

    Packet identifier

    properties?: SubackProperties

    SUBACK properties (5.0)

    reasonCodes: readonly ReasonCode[]

    Reason codes for each subscription

    type: typeof SUBACK

    Packet type discriminator.