Uses of Interface
org.eclipse.paho.client.mqttv3.IMqttDeliveryToken

Packages that use IMqttDeliveryToken
org.eclipse.paho.client.mqttv3 Contains a programming interface enabling applications to communicate with an MQTT server. 
 

Uses of IMqttDeliveryToken in org.eclipse.paho.client.mqttv3
 

Classes in org.eclipse.paho.client.mqttv3 that implement IMqttDeliveryToken
 class MqttDeliveryToken
          Provides a mechanism to track the delivery progress of a message.
 

Methods in org.eclipse.paho.client.mqttv3 that return IMqttDeliveryToken
 IMqttDeliveryToken[] IMqttAsyncClient.getPendingDeliveryTokens()
          Returns the delivery tokens for any outstanding publish operations.
 IMqttDeliveryToken[] IMqttClient.getPendingDeliveryTokens()
          Returns the delivery tokens for any outstanding publish operations.
 IMqttDeliveryToken[] MqttAsyncClient.getPendingDeliveryTokens()
           
 IMqttDeliveryToken[] MqttClient.getPendingDeliveryTokens()
           
 IMqttDeliveryToken IMqttAsyncClient.publish(String topic, byte[] payload, int qos, boolean retained)
          Publishes a message to a topic on the server.
 IMqttDeliveryToken MqttAsyncClient.publish(String topic, byte[] payload, int qos, boolean retained)
           
 IMqttDeliveryToken IMqttAsyncClient.publish(String topic, byte[] payload, int qos, boolean retained, Object userContext, IMqttActionListener callback)
          Publishes a message to a topic on the server.
 IMqttDeliveryToken MqttAsyncClient.publish(String topic, byte[] payload, int qos, boolean retained, Object userContext, IMqttActionListener callback)
           
 IMqttDeliveryToken IMqttAsyncClient.publish(String topic, MqttMessage message)
          Publishes a message to a topic on the server.
 IMqttDeliveryToken MqttAsyncClient.publish(String topic, MqttMessage message)
           
 IMqttDeliveryToken IMqttAsyncClient.publish(String topic, MqttMessage message, Object userContext, IMqttActionListener callback)
          Publishes a message to a topic on the server.
 IMqttDeliveryToken MqttAsyncClient.publish(String topic, MqttMessage message, Object userContext, IMqttActionListener callback)
           
 

Methods in org.eclipse.paho.client.mqttv3 with parameters of type IMqttDeliveryToken
 void MqttCallback.deliveryComplete(IMqttDeliveryToken token)
          Called when delivery for a message has been completed, and all acknowledgments have been received.
 



Copyright © 2013. All Rights Reserved.