Interface PresenceCompletionHandler
-
public interface PresenceCompletionHandlerDefines an interface that the client application must implement to receive the result of an operation requested on various presence related methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(PresenceException error)Reports that the operation has failed.voidonSuccess()Reports that the operation has been successfully completed.
-
-
-
Method Detail
-
onSuccess
void onSuccess()
Reports that the operation has been successfully completed.
-
onError
void onError(PresenceException error)
Reports that the operation has failed.- Parameters:
error- Failure details.
-
-