|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.sf.xenqtt.client.AsyncMqttClient
public final class AsyncMqttClient
An MqttClient
that handles interactions with the MQTT broker in an asynchronous fashion.
Constructor Summary | |
---|---|
AsyncMqttClient(String brokerUri,
AsyncClientListener listener,
Executor executor)
Constructs an instance of this class using a user provided Executor with the default config . |
|
AsyncMqttClient(String brokerUri,
AsyncClientListener listener,
Executor executor,
MqttClientConfig config)
Constructs an instance of this class using a user provided Executor with a custom config . |
|
AsyncMqttClient(String brokerUri,
AsyncClientListener listener,
int messageHandlerThreadPoolSize)
Constructs an instance of this class using an Executor owned by this class with the default config . |
|
AsyncMqttClient(String brokerUri,
AsyncClientListener listener,
int messageHandlerThreadPoolSize,
MqttClientConfig config)
Constructs an instance of this class using an Executor owned by this class with a custom config . |
Method Summary | |
---|---|
void |
close()
Closes this client without doing a clean disconnect. |
ConnectReturnCode |
connect(String clientId,
boolean cleanSession)
Connects this client to the broker with no credentials and no Will Message. |
ConnectReturnCode |
connect(String clientId,
boolean cleanSession,
String userName,
String password)
Connects this client to the broker with credentials but no Will Message. |
ConnectReturnCode |
connect(String clientId,
boolean cleanSession,
String willTopic,
String willMessage,
QoS willQos,
boolean willRetain)
Connects this client to the broker with a Will Message but no credentials. |
ConnectReturnCode |
connect(String clientId,
boolean cleanSession,
String userName,
String password,
String willTopic,
String willMessage,
QoS willQos,
boolean willRetain)
Connects this client to the broker with credentials and a WillMessage. |
void |
disconnect()
Disconnects this client from the broker. |
MessageStats |
getStats(boolean reset)
|
boolean |
isClosed()
|
void |
publish(PublishMessage message)
Publishes a message . |
List<Subscription> |
subscribe(List<Subscription> subscriptions)
Subscribes to topics. |
Subscription[] |
subscribe(Subscription[] subscriptions)
Subscribes to topics. |
void |
unsubscribe(List<String> topics)
Unsubscribes from topics. |
void |
unsubscribe(String[] topics)
Unsubscribes from topics. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public AsyncMqttClient(String brokerUri, AsyncClientListener listener, int messageHandlerThreadPoolSize)
Executor
owned by this class with the default config
.
brokerUri
- The URL to the broker to connect to. For example, tcp://q.m2m.io:1883listener
- Handles events from this client. Use AsyncClientListener.NULL_LISTENER
if you don't want to receive messages or be notified of events.messageHandlerThreadPoolSize
- The number of threads used to handle incoming messages and invoke the listener's
methodspublic AsyncMqttClient(String brokerUri, AsyncClientListener listener, int messageHandlerThreadPoolSize, MqttClientConfig config)
Executor
owned by this class with a custom config
.
brokerUri
- The URL to the broker to connect to. For example, tcp://q.m2m.io:1883listener
- Handles events from this client. Use AsyncClientListener.NULL_LISTENER
if you don't want to receive messages or be notified of events.messageHandlerThreadPoolSize
- The number of threads used to handle incoming messages and invoke the listener's
methodsconfig
- The configuration for the clientpublic AsyncMqttClient(String brokerUri, AsyncClientListener listener, Executor executor)
Executor
with the default config
.
brokerUri
- The URL to the broker to connect to. For example, tcp://q.m2m.io:1883listener
- Handles events from this client. Use AsyncClientListener.NULL_LISTENER
if you don't want to receive messages or be notified of events.executor
- The executor used to handle incoming messages and invoke the listener's
methods. This class will NOT shut down the
executor.public AsyncMqttClient(String brokerUri, AsyncClientListener listener, Executor executor, MqttClientConfig config)
Executor
with a custom config
.
brokerUri
- The URL to the broker to connect to. For example, tcp://q.m2m.io:1883listener
- Handles events from this client. Use AsyncClientListener.NULL_LISTENER
if you don't want to receive messages or be notified of events.executor
- The executor used to handle incoming messages and invoke the listener's
methods. This class will NOT shut down the
executor.config
- The configuration for the clientMethod Detail |
---|
public final ConnectReturnCode connect(String clientId, boolean cleanSession, String userName, String password, String willTopic, String willMessage, QoS willQos, boolean willRetain) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
connected
method is called after these actions are completed.
connect
in interface MqttClient
clientId
- The Client Identifier (Client ID) is between 1 and 23 characters long, and uniquely identifies the client to the broker. It must be unique
across all clients connecting to a single broker. If the Client ID contains more than 23 characters, the broker responds with
ConnectReturnCode.IDENTIFIER_REJECTED
.cleanSession
- If not set, then the broker must store the subscriptions of the client after it disconnects. This includes continuing to store QoS 1 and QoS 2
messages for the subscribed topics so that they can be delivered when the client reconnects. The broker must also maintain the state of
in-flight messages being delivered at the point the connection is lost. This information must be kept until the client reconnects.
If set, then the broker must discard any previously maintained information about the client and treat the connection as "clean". The broker must also discard any state when the client disconnects.
Typically, a client will operate in one mode or the other and not change. The choice will depend on the application. A clean session client will not receive stale information and it must re-subscribe each time it connects. A non-clean session client will not miss any QoS 1 or QoS 2 messages that were published whilst it was disconnected. QoS 0 messages are never stored, since they are delivered on a best efforts basis.
userName
- The user name identifies the name of the user who is connecting, which can be used for authentication. It is recommended that user names are
kept to 12 characters or fewer, but it is not required.
Null if there is no user name.
password
- The password corresponding to the user who is connecting, which can be used for authentication. It is recommended that passwords are kept to
12 characters or fewer, but it is not required.
Null if there is no password. If there is no username there can be no password.
willTopic
- The Will Message is published to the Will Topic. If there is not a Will Message then this is not applicable.
Null if there is no Will Message.
willMessage
- The Will Message defines the content of the message that is published to the Will Topic if the client is unexpectedly disconnected. This may
be a zero-length message.
Although the Will Message is UTF-8 encoded in the CONNECT message, when it is published to the Will Topic only the bytes of the message are sent, not the first two length bytes. The message must therefore only consist of 7-bit ASCII characters.
Null if there is no Will Message. Zero length string if there is an empty Will Message.
willQos
- The QoS of the #willMessage
. If there is not a Will Message then this is not applicable.willRetain
- The retain value of the Will message. False if either retain is false or there is no Will Message.
return code
from the broker if the SyncMqttClient
is used. Anything other than
ConnectReturnCode.ACCEPTED
(or null) will result in the client being immediately disconnected. Null if the AsyncMqttClient
implementation is used.
MqttCommandCancelledException
- Thrown when the internal command used to implement this feature is cancelled.
MqttTimeoutException
- Thrown when this method has blocked for approximately the configured timeout. Only applicable when the synchronous
implementation is used.
MqttInterruptedException
- Thrown when the calling thread is interrupted
.MqttClient.connect(java.lang.String, boolean, java.lang.String, java.lang.String, java.lang.String, java.lang.String,
net.sf.xenqtt.message.QoS, boolean)
public final ConnectReturnCode connect(String clientId, boolean cleanSession) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
#connect(String, boolean, int, String, String, String, String, QoS, boolean)
.
connect
in interface MqttClient
MqttCommandCancelledException
MqttTimeoutException
MqttInterruptedException
MqttClient.connect(java.lang.String, boolean)
public final ConnectReturnCode connect(String clientId, boolean cleanSession, String userName, String password) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
#connect(String, boolean, int, String, String, String, String, QoS, boolean)
.
connect
in interface MqttClient
MqttCommandCancelledException
MqttTimeoutException
MqttInterruptedException
MqttClient.connect(java.lang.String, boolean, java.lang.String, java.lang.String)
public final ConnectReturnCode connect(String clientId, boolean cleanSession, String willTopic, String willMessage, QoS willQos, boolean willRetain) throws MqttTimeoutException, MqttInterruptedException
MqttClient
#connect(String, boolean, int, String, String, String, String, QoS, boolean)
.
connect
in interface MqttClient
MqttTimeoutException
MqttInterruptedException
MqttClient.connect(java.lang.String, boolean, java.lang.String, java.lang.String, net.sf.xenqtt.message.QoS, boolean)
public final void disconnect() throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
disconnected
method is called after these actions are completed.
disconnect
in interface MqttClient
MqttCommandCancelledException
- Thrown when the internal command used to implement this feature is cancelled.
MqttTimeoutException
- Thrown when this method has blocked for approximately the configured timeout. Only applicable when the synchronous
implementation is used.
MqttInterruptedException
- Thrown when the calling thread is interrupted
.MqttClient.disconnect()
public final Subscription[] subscribe(Subscription[] subscriptions) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
subscribed
method is called after these actions are completed.
subscribe
in interface MqttClient
subscriptions
- The topics to subscribe to and the requested QoS for each. The topics can include wildcards:
SyncMqttClient
is used. Null if the AsyncMqttClient
implementation
is used.
MqttCommandCancelledException
- Thrown when the internal command used to implement this feature is cancelled.
MqttTimeoutException
- Thrown when this method has blocked for approximately the configured timeout. Only applicable when the synchronous
implementation is used.
MqttInterruptedException
- Thrown when the calling thread is interrupted
.MqttClient.subscribe(net.sf.xenqtt.client.Subscription[])
public final List<Subscription> subscribe(List<Subscription> subscriptions) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
MqttClient.subscribe(Subscription[])
except it uses lists
instead of arrays.
subscribe
in interface MqttClient
MqttCommandCancelledException
MqttTimeoutException
MqttInterruptedException
MqttClient.subscribe(java.util.List)
public final void unsubscribe(String[] topics) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
unsubscribed
method is called after these actions are completed.
unsubscribe
in interface MqttClient
topics
- The topics to unsubscribe from. This can include wildcards:
MqttCommandCancelledException
- Thrown when the internal command used to implement this feature is cancelled.
MqttTimeoutException
- Thrown when this method has blocked for approximately the configured timeout. Only applicable when the synchronous
implementation is used.
MqttInterruptedException
- Thrown when the calling thread is interrupted
.MqttClient.unsubscribe(java.lang.String[])
public final void unsubscribe(List<String> topics) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
MqttClient.unsubscribe(String[])
except it uses lists
instead of arrays.
unsubscribe
in interface MqttClient
MqttCommandCancelledException
MqttTimeoutException
MqttInterruptedException
MqttClient.unsubscribe(java.util.List)
public final void publish(PublishMessage message) throws MqttCommandCancelledException, MqttTimeoutException, MqttInterruptedException
MqttClient
message
. This includes these actions:
QoS.AT_MOST_ONCE
then wait for the broker's acknowledgmentpublished
method is called after these actions are completed.
publish
in interface MqttClient
message
- The message to publish to the broker
MqttCommandCancelledException
- Thrown when the internal command used to implement this feature is cancelled.
MqttTimeoutException
- Thrown when this method has blocked for approximately the configured timeout. Only applicable when the synchronous
implementation is used.
MqttInterruptedException
- Thrown when the calling thread is interrupted
.MqttClient.publish(net.sf.xenqtt.client.PublishMessage)
public final void close() throws MqttTimeoutException, MqttInterruptedException
MqttClient
disconnected
method is called after these actions are completed.
close
in interface MqttClient
MqttTimeoutException
- Thrown when this method has blocked for approximately the configured timeout. Only applicable when the synchronous
implementation is used.
MqttInterruptedException
- Thrown when the calling thread is interrupted
.MqttClient.close()
public final boolean isClosed()
isClosed
in interface MqttClient
Disconnected
will have been called
and all internal thread pools will be shut down or will be in the process of shutting down.MqttClient.isClosed()
public MessageStats getStats(boolean reset)
getStats
in interface MqttClient
reset
- If true the stats will be reset to 0 (where applicable) so the next time they are retrieved they will be for the time between the 2 calls to
this method.
MqttClientFactory
these stats will be for all the
clients created using the same factory as this client.MqttClient.getStats(boolean)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |