pamoja for TypeScript - v0.1.17
    Preparing search index...

    Interface MqttClientOptions

    Connection settings for an MqttClient.

    interface MqttClientOptions {
        capacity?: number;
        clientId: string;
        host: string;
        keepAliveSecs?: number;
        port: number;
        qos?: Qos;
    }
    Index
    capacity?: number

    Bound on outstanding client requests. Defaults to 64 when omitted.

    clientId: string

    The MQTT client identifier presented to the broker.

    host: string

    The broker hostname or IP address.

    keepAliveSecs?: number

    Keep-alive interval in seconds. Defaults to 30 when omitted.

    port: number

    The broker TCP port, conventionally 1883 for plaintext MQTT.

    qos?: Qos

    Default quality of service. Defaults to AtLeastOnce when omitted.