Package com.avaya.clientservices.contact
Interface ContactCompletionHandler
-
public interface ContactCompletionHandlerDefines an interface that the client application needs to implement to receive the result of an operation requested on various contact related methods.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(ContactException error)Reports that the operation has failed.voidonSuccess()Reports that the operation was successfully completed.
-
-
-
Method Detail
-
onSuccess
void onSuccess()
Reports that the operation was successfully completed.
-
onError
void onError(ContactException error)
Reports that the operation has failed.- Parameters:
error- Information about failure details.
-
-