Class IZegoApiCalledEventHandler


  • public abstract class IZegoApiCalledEventHandler
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void onApiCalledResult​(int errorCode, java.lang.String funcName, java.lang.String info)
      Method execution result callback Available since: 2.3.0 Description: When the monitoring is turned on through [setApiCalledCallback], the results of the execution of all methods will be called back through this callback.
      • Methods inherited from class java.lang.Object

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

      • IZegoApiCalledEventHandler

        public IZegoApiCalledEventHandler()
    • Method Detail

      • onApiCalledResult

        public void onApiCalledResult​(int errorCode,
                                      java.lang.String funcName,
                                      java.lang.String info)
        Method execution result callback Available since: 2.3.0 Description: When the monitoring is turned on through [setApiCalledCallback], the results of the execution of all methods will be called back through this callback. Trigger: When the developer calls the SDK method, the execution result of the method is called back. Restrictions: None. Caution: It is recommended to monitor and process this callback in the development and testing phases, and turn off the monitoring of this callback after going online.
        Parameters:
        errorCode - Error code, please refer to the error codes document https://docs.zegocloud.com/en/5548.html for details.
        funcName - Function name.
        info - Detailed error information.