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

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

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

Subinterfaces of IMqttToken in org.eclipse.paho.client.mqttv3
 interface IMqttDeliveryToken
          Provides a mechanism for tracking the delivery of a message.
 

Classes in org.eclipse.paho.client.mqttv3 that implement IMqttToken
 class MqttDeliveryToken
          Provides a mechanism to track the delivery progress of a message.
 class MqttToken
          Provides a mechanism for tracking the completion of an asynchronous action.
 

Methods in org.eclipse.paho.client.mqttv3 that return IMqttToken
 IMqttToken IMqttAsyncClient.connect()
          Connects to an MQTT server using the default options.
 IMqttToken MqttAsyncClient.connect()
           
 IMqttToken IMqttAsyncClient.connect(MqttConnectOptions options)
          Connects to an MQTT server using the provided connect options.
 IMqttToken MqttAsyncClient.connect(MqttConnectOptions options)
           
 IMqttToken IMqttAsyncClient.connect(MqttConnectOptions options, Object userContext, IMqttActionListener callback)
          Connects to an MQTT server using the specified options.
 IMqttToken MqttAsyncClient.connect(MqttConnectOptions options, Object userContext, IMqttActionListener callback)
           
 IMqttToken IMqttAsyncClient.connect(Object userContext, IMqttActionListener callback)
          Connects to an MQTT server using the default options.
 IMqttToken MqttAsyncClient.connect(Object userContext, IMqttActionListener callback)
           
 IMqttToken IMqttAsyncClient.disconnect()
          Disconnects from the server.
 IMqttToken MqttAsyncClient.disconnect()
           
 IMqttToken IMqttAsyncClient.disconnect(long quiesceTimeout)
          Disconnects from the server.
 IMqttToken MqttAsyncClient.disconnect(long quiesceTimeout)
           
 IMqttToken IMqttAsyncClient.disconnect(long quiesceTimeout, Object userContext, IMqttActionListener callback)
          Disconnects from the server.
 IMqttToken MqttAsyncClient.disconnect(long quiesceTimeout, Object userContext, IMqttActionListener callback)
           
 IMqttToken IMqttAsyncClient.disconnect(Object userContext, IMqttActionListener callback)
          Disconnects from the server.
 IMqttToken MqttAsyncClient.disconnect(Object userContext, IMqttActionListener callback)
           
 IMqttToken IMqttAsyncClient.subscribe(String[] topicFilters, int[] qos)
          Subscribe to multiple topics, each of which may include wildcards.
 IMqttToken MqttAsyncClient.subscribe(String[] topicFilters, int[] qos)
           
 IMqttToken IMqttAsyncClient.subscribe(String[] topicFilters, int[] qos, Object userContext, IMqttActionListener callback)
          Subscribes to multiple topics, each of which may include wildcards.
 IMqttToken MqttAsyncClient.subscribe(String[] topicFilters, int[] qos, Object userContext, IMqttActionListener callback)
           
 IMqttToken IMqttAsyncClient.subscribe(String topicFilter, int qos)
          Subscribe to a topic, which may include wildcards.
 IMqttToken MqttAsyncClient.subscribe(String topicFilter, int qos)
           
 IMqttToken IMqttAsyncClient.subscribe(String topicFilter, int qos, Object userContext, IMqttActionListener callback)
          Subscribe to a topic, which may include wildcards.
 IMqttToken MqttAsyncClient.subscribe(String topicFilter, int qos, Object userContext, IMqttActionListener callback)
           
 IMqttToken IMqttAsyncClient.unsubscribe(String topicFilter)
          Requests the server unsubscribe the client from a topic.
 IMqttToken MqttAsyncClient.unsubscribe(String topicFilter)
           
 IMqttToken IMqttAsyncClient.unsubscribe(String[] topicFilters)
          Requests the server unsubscribe the client from one or more topics.
 IMqttToken MqttAsyncClient.unsubscribe(String[] topicFilters)
           
 IMqttToken IMqttAsyncClient.unsubscribe(String[] topicFilters, Object userContext, IMqttActionListener callback)
          Requests the server unsubscribe the client from one or more topics.
 IMqttToken MqttAsyncClient.unsubscribe(String[] topicFilters, Object userContext, IMqttActionListener callback)
           
 IMqttToken IMqttAsyncClient.unsubscribe(String topicFilter, Object userContext, IMqttActionListener callback)
          Requests the server unsubscribe the client from a topics.
 IMqttToken MqttAsyncClient.unsubscribe(String topicFilter, Object userContext, IMqttActionListener callback)
           
 

Methods in org.eclipse.paho.client.mqttv3 with parameters of type IMqttToken
 void IMqttActionListener.onFailure(IMqttToken asyncActionToken, Throwable exception)
          This method is invoked when an action fails.
 void IMqttActionListener.onSuccess(IMqttToken asyncActionToken)
          This method is invoked when an action has completed successfully.
 

Uses of IMqttToken in org.eclipse.paho.client.mqttv3.internal
 

Methods in org.eclipse.paho.client.mqttv3.internal with parameters of type IMqttToken
 void ConnectActionListener.onFailure(IMqttToken token, Throwable exception)
          The connect failed, so try the next URI on the list.
 void ConnectActionListener.onSuccess(IMqttToken token)
          If the connect succeeded then call the users onSuccess callback
 



Copyright © 2013. All Rights Reserved.