Package 

Interface ZoomCCServiceListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • 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.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.