Interface RemoteNotificationClient.CallbackListener
-
- All Implemented Interfaces:
public interface RemoteNotificationClient.CallbackListenerInterface for callback in the async operation.
-
-
Method Summary
-
-
Method Detail
-
onSuccess
abstract Unit onSuccess()
This will be called when operation is successful. This function is called in UI Thread
-
onError
abstract Unit onError(Throwable e)
This will be called when operation fails. This function is called in UI Thread
- Parameters:
e- Exception detail of error.
-
-
-
-