@openhps/mqtt
    Preparing search index...

    Interface MQTTPullOptions

    interface MQTTPullOptions {
        clientId: string;
        count?: number;
        requestedObjects?: string[];
        sequentialPull?: boolean;
        sourceNode?: string;
        topic: string;
    }

    Hierarchy

    • RemotePullOptions
      • MQTTPullOptions
    Index
    clientId: string

    Client identifier pulling

    count?: number

    Number of frames to request

    requestedObjects?: string[]

    Requested objects UIDs

    sequentialPull?: boolean

    Sequential pulling. If set to true, the pulling will be done sequentially where the next pull is only performed after the push is completed.

    true
    
    sourceNode?: string

    Pull from a specific source node UID

    topic: string