Interface RemoteNotificationClient.CallbackListenerWithResult
-
- All Implemented Interfaces:
public interface RemoteNotificationClient.CallbackListenerWithResult
-
-
Method Summary
Modifier and Type Method Description abstract UnitonSuccess(ServiceResult.SUCCESS<Array<String>> result)This will be called when operation is successful. abstract UnitonError(Throwable e)This will be called when operation fails. -
-
Method Detail
-
onSuccess
abstract Unit onSuccess(ServiceResult.SUCCESS<Array<String>> result)
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.
-
-
-
-