Interface ParticipantsCompletionHandler
-
public interface ParticipantsCompletionHandlerDefines an interface that the client application needs to implement to receive the result of get participants operation on collaboration/chat object.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(java.lang.Exception error)Reports that the operation has failed.voidonParticipantsResult(java.util.List<Participant> participants)Reports that the operation was successfully completed.
-
-
-
Method Detail
-
onParticipantsResult
void onParticipantsResult(java.util.List<Participant> participants)
Reports that the operation was successfully completed.- Parameters:
participants- this parameter contains list of collaboration participants.- See Also:
Participant
-
onError
void onError(java.lang.Exception error)
Reports that the operation has failed.- Parameters:
error- Information about failure details.
-
-