Interface DeviceBindingCallback<T>

Type Parameters:
T - the success payload type (String bindingId for register, Void otherwise).

public interface DeviceBindingCallback<T>
Result callback for the DeviceBindingApi operations. Exactly one of onSuccess(Object) / onError(DeviceBindingException) is invoked.

For operations without a result value (verify, revoke) the type argument is Void and onSuccess(Object) is called with null.

  • Method Details