Interface AwsIotConnectionCallback
- All Known Implementing Classes:
AbstractAwsIotClient,AwsIotConnection,AWSIotMqttClient,AwsIotMqttConnection,AwsIotTlsConnection,AwsIotWebsocketConnection
public interface AwsIotConnectionCallback
This interface class defines functions called under different connection
events.
-
Method Summary
Modifier and TypeMethodDescriptionvoidOn connection closed.voidOn connection failure.voidOn connection success.
-
Method Details
-
onConnectionSuccess
void onConnectionSuccess()On connection success. -
onConnectionFailure
void onConnectionFailure()On connection failure. -
onConnectionClosed
void onConnectionClosed()On connection closed.
-