Package im.zego.zegoexpress.callback
Class IZegoRangeAudioEventHandler
- java.lang.Object
-
- im.zego.zegoexpress.callback.IZegoRangeAudioEventHandler
-
public abstract class IZegoRangeAudioEventHandler extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description IZegoRangeAudioEventHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onRangeAudioMicrophoneStateUpdate(ZegoRangeAudio rangeAudio, ZegoRangeAudioMicrophoneState state, int errorCode)
Range audio microphone state callback.
-
-
-
Method Detail
-
onRangeAudioMicrophoneStateUpdate
public void onRangeAudioMicrophoneStateUpdate(ZegoRangeAudio rangeAudio, ZegoRangeAudioMicrophoneState state, int errorCode)
Range audio microphone state callback. Available since: 2.11.0 Description: The status change notification of the microphone, starting to send audio is an asynchronous process, and the state switching in the middle is called back through this function. When to Trigger: After the [enableMicrophone] function. Caution: 1. It must be monitored before the [enableMicrophone] function is called. 2. The callback is not triggered when the [enableMicrophone] is stopped normally, and the Off state is triggered only when the [enableMicrophone] is stopped abnormally.- Parameters:
rangeAudio
- Range audio instance that triggers this callback.state
- The use state of the range audio.errorCode
- Error code, please refer to the error codes document https://docs.zegocloud.com/en/5548.html for details.
-
-