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

    Type Alias UnsubscribePacket

    UNSUBSCRIBE packet - Unsubscribe from topics.

    MQTT 5.0 §3.10

    type UnsubscribePacket = {
        packetId: number;
        properties?: UnsubscribeProperties;
        topicFilters: readonly string[];
        type: typeof UNSUBSCRIBE;
    }
    Index

    Properties

    packetId: number

    Packet identifier

    UNSUBSCRIBE properties (5.0)

    topicFilters: readonly string[]

    Topic filters to unsubscribe

    type: typeof UNSUBSCRIBE

    Packet type discriminator.