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

    Type Alias WillProperties

    Will message properties (MQTT 5.0).

    type WillProperties = {
        contentType?: string;
        correlationData?: Uint8Array;
        messageExpiryInterval?: number;
        payloadFormatIndicator?: 0 | 1;
        responseTopic?: string;
        userProperties?: readonly UserProperty[];
        willDelayInterval?: number;
    }
    Index

    Properties

    contentType?: string

    Content type (MIME)

    correlationData?: Uint8Array

    Correlation data

    messageExpiryInterval?: number

    Message expiry (seconds)

    payloadFormatIndicator?: 0 | 1

    Payload format: 0=bytes, 1=UTF-8

    responseTopic?: string

    Response topic

    userProperties?: readonly UserProperty[]

    User properties

    willDelayInterval?: number

    Delay before publishing will (seconds)