-
- All Implemented Interfaces:
public interface ZoomCCServiceListener
Callback for SDK
-
-
Method Summary
Modifier and Type Method Description Unit
onLoginStatus(IMStatus status)
When the login status changes, this method will be called. Unit
onError(Integer error, Long detail, String description)
Will be called when error occurs for the service. Unit
onEngagementStart(String engagementId)
When this called, it means server creates an engagement for the service after the service's request Unit
onEngagementEnd(String engagementId)
When this called, it means the engagement has been ended. Unit
onClientEvent(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.
-
-
-
-