com.amazonaws.mobileconnectors.iot.MqttManagerConnectionState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-android-sdk-iot Show documentation
Show all versions of aws-android-sdk-iot Show documentation
The AWS Android SDK for AWS IoT module holds the client classes that are used for communicating with AWS IoT Service
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