|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ReconnectionStrategy | |
---|---|
net.sf.xenqtt.client |
Uses of ReconnectionStrategy in net.sf.xenqtt.client |
---|
Classes in net.sf.xenqtt.client that implement ReconnectionStrategy | |
---|---|
class |
FixedReconnectionStrategy
A ReconnectStrategy implementation that attempts to reconnect a fixed intervals up to a maximum number of reconnection attempts. |
class |
NullReconnectStrategy
Reconnect strategy that does 0 reconnect attempts. |
class |
ProgressiveReconnectionStrategy
A ReconnectionStrategy implementation that allows for progressive reconnection attempts to the broker. |
Methods in net.sf.xenqtt.client that return ReconnectionStrategy | |
---|---|
ReconnectionStrategy |
ReconnectionStrategy.clone()
|
ReconnectionStrategy |
ProgressiveReconnectionStrategy.clone()
|
ReconnectionStrategy |
NullReconnectStrategy.clone()
|
ReconnectionStrategy |
FixedReconnectionStrategy.clone()
|
Constructors in net.sf.xenqtt.client with parameters of type ReconnectionStrategy | |
---|---|
AsyncMqttClient(String brokerUri,
AsyncClientListener listener,
ReconnectionStrategy reconnectionStrategy,
Executor executor,
int connectTimeoutSeconds,
int messageResendIntervalSeconds)
Constructs an instance of this class using a user provided Executor . |
|
AsyncMqttClient(String brokerUri,
AsyncClientListener listener,
ReconnectionStrategy reconnectionStrategy,
int messageHandlerThreadPoolSize,
int connectTimeoutSeconds,
int messageResendIntervalSeconds)
Constructs an instance of this class using an Executor owned by this class. |
|
MqttClientFactory(String brokerUri,
ReconnectionStrategy reconnectionStrategy,
Executor executor,
int connectTimeoutSeconds,
int messageResendIntervalSeconds)
Constructs an object to create asynchronous clients using a user provided Executor . |
|
MqttClientFactory(String brokerUri,
ReconnectionStrategy reconnectionStrategy,
Executor executor,
int connectTimeoutSeconds,
int messageResendIntervalSeconds,
int blockingTimeoutSeconds)
Constructs an object to create synchronous clients using a user provided Executor . |
|
MqttClientFactory(String brokerUri,
ReconnectionStrategy reconnectionStrategy,
int messageHandlerThreadPoolSize,
int connectTimeoutSeconds,
int messageResendIntervalSeconds)
Constructs an object to create asynchronous clients using an Executor owned by this class. |
|
MqttClientFactory(String brokerUri,
ReconnectionStrategy reconnectionStrategy,
int messageHandlerThreadPoolSize,
int connectTimeoutSeconds,
int messageResendIntervalSeconds,
int blockingTimeoutSeconds)
Constructs an object to create synchronous clients using an Executor owned by this class. |
|
SynchronousMqttClient(String brokerUri,
MqttClientListener listener,
ReconnectionStrategy reconnectionStrategy,
Executor executor,
int connectTimeoutSeconds,
int messageResendIntervalSeconds,
int blockingTimeoutSeconds)
Constructs an instance of this class using a user provided Executor . |
|
SynchronousMqttClient(String brokerUri,
MqttClientListener listener,
ReconnectionStrategy reconnectionStrategy,
int messageHandlerThreadPoolSize,
int connectTimeoutSeconds,
int messageResendIntervalSeconds,
int blockingTimeoutSeconds)
Constructs an instance of this class using an Executor owned by this class. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |