edgeport - v1.0.3
    Preparing search index...

    Interface MqttJsonMessage<T>

    A message delivered to a MqttSession.subscribeJson iterator: the topic and parsed value.

    interface MqttJsonMessage<T> {
        topic: string;
        value: T;
    }

    Type Parameters

    • T
    Index
    topic: string

    The topic the message was published to.

    value: T

    The payload parsed from JSON.