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

    Type Alias ConnackProperties

    CONNACK properties (MQTT 5.0).

    type ConnackProperties = {
        assignedClientIdentifier?: string;
        authenticationData?: Uint8Array;
        authenticationMethod?: string;
        maximumPacketSize?: number;
        maximumQoS?: QoS;
        reasonString?: string;
        receiveMaximum?: number;
        responseInformation?: string;
        retainAvailable?: boolean;
        serverKeepAlive?: number;
        serverReference?: string;
        sessionExpiryInterval?: number;
        sharedSubscriptionAvailable?: boolean;
        subscriptionIdentifiersAvailable?: boolean;
        topicAliasMaximum?: number;
        userProperties?: readonly UserProperty[];
        wildcardSubscriptionAvailable?: boolean;
    }
    Index

    Properties

    assignedClientIdentifier?: string

    Assigned client identifier

    authenticationData?: Uint8Array

    Authentication data

    authenticationMethod?: string

    Authentication method

    maximumPacketSize?: number

    Maximum packet size

    maximumQoS?: QoS

    Maximum QoS supported

    reasonString?: string

    Reason string

    receiveMaximum?: number

    Receive maximum

    responseInformation?: string

    Response information

    retainAvailable?: boolean

    Retain available

    serverKeepAlive?: number

    Server keep alive

    serverReference?: string

    Server reference

    sessionExpiryInterval?: number

    Session expiry interval

    sharedSubscriptionAvailable?: boolean

    Shared subscription available

    subscriptionIdentifiersAvailable?: boolean

    Subscription identifiers available

    topicAliasMaximum?: number

    Topic alias maximum

    userProperties?: readonly UserProperty[]

    User properties

    wildcardSubscriptionAvailable?: boolean

    Wildcard subscription available