Package com.avaya.clientservices.call
Interface MeetingMinutesCompletionHandler
-
public interface MeetingMinutesCompletionHandlerDefines an interface that the client application needs to implement to receive the result of a requested feature operation. This handler may be implemented as an anonymous class to receive initial feedback about the outcome of a previously invoked operation by the application.- See Also:
CollaborationFailure
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(CollaborationFailure collaborationFailure)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(CollaborationFailure collaborationFailure)
Reports that the operation has failed.- Parameters:
collaborationFailure- the collaboration related failure information.
-
-