-
- All Implemented Interfaces:
public interface ZoomCCServiceListenerCallback for SDK
-
-
Method Summary
Modifier and Type Method Description UnitonLoginStatus(IMStatus status)When the login status changes, this method will be called. UnitonError(Integer error, Long detail, String description)Will be called when error occurs for the service. UnitonEngagementStart(String engagementId)When this called, it means server creates an engagement for the service after the service's request UnitonEngagementEnd(String engagementId)When this called, it means the engagement has been ended. UnitonClientEvent(ClientEvent event)Event like user action has happened. -
-
Method Detail
-
onLoginStatus
Unit onLoginStatus(IMStatus status)
When the login status changes, this method will be called.
- Parameters:
status- service status.
-
onError
Unit onError(Integer error, Long detail, String description)
Will be called when error occurs for the service.
- Parameters:
error- service error code.detail- the detail of the code.description- the description of the error.
-
onEngagementStart
Unit onEngagementStart(String engagementId)
When this called, it means server creates an engagement for the service after the service's request
- Parameters:
engagementId- the engagement's ID.
-
onEngagementEnd
Unit onEngagementEnd(String engagementId)
When this called, it means the engagement has been ended.
- Parameters:
engagementId- the engagement's ID.
-
onClientEvent
Unit onClientEvent(ClientEvent event)
Event like user action has happened.
- Parameters:
event- the event that happened.
-
-
-
-