Interface MqttTriggerNodeParameters

Source
interface MqttTriggerNodeParameters {
    options?: {
        jsonParseBody?: boolean;
        onlyMessage?: boolean;
        parallelProcessing?: boolean;
    };
    topics?: string;
}

Properties§

Source§

readonly options?: {
    jsonParseBody?: boolean;
    onlyMessage?: boolean;
    parallelProcessing?: boolean;
}

Default: {}

Source§

readonly topics?: string

Topics to subscribe to, multiple can be defined with comma. Wildcard characters are supported (+ - for single level and # - for multi level). By default all subscription used QoS=0. To set a different QoS, write the QoS desired after the topic preceded by a colom. For Example: topicA:1,topicB:2