com.amazonaws.mobileconnectors.iot.MqttManagerConnectionState Maven / Gradle / Ivy
package com.amazonaws.mobileconnectors.iot;
/**
* Possible connection states for MQTT connection of MqttManager.
*/
enum MqttManagerConnectionState {
/**
* Client is attempting to connect.
*/
Connecting,
/**
* Client successfully connected.
*/
Connected,
/**
* Not connected.
*/
Disconnected,
/**
* Automatically reconnecting after connection loss.
*/
Reconnecting
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy