All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.microsoft.azure.sdk.iot.device.IotHubConnectionStateCallback Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package com.microsoft.azure.sdk.iot.device;

/**
 * An interface for an IoT Hub connection state callback.
 *
 * Developers are expected to create an implementation of this interface,
 * and the transport will call {@link IotHubConnectionStateCallback#execute(IotHubConnectionState, Object)}
 * passing in the connection status (down, success, etc.).
 */
public interface IotHubConnectionStateCallback {
    void execute(IotHubConnectionState state, Object callbackContext);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy