Package im.zego.zegoexpress.callback
Class IZegoAudioEffectPlayerEventHandler
- java.lang.Object
-
- im.zego.zegoexpress.callback.IZegoAudioEffectPlayerEventHandler
-
public abstract class IZegoAudioEffectPlayerEventHandler extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description IZegoAudioEffectPlayerEventHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onAudioEffectPlayStateUpdate(ZegoAudioEffectPlayer audioEffectPlayer, int audioEffectID, ZegoAudioEffectPlayState state, int errorCode)
Audio effect playback state callback.
-
-
-
Method Detail
-
onAudioEffectPlayStateUpdate
public void onAudioEffectPlayStateUpdate(ZegoAudioEffectPlayer audioEffectPlayer, int audioEffectID, ZegoAudioEffectPlayState state, int errorCode)
Audio effect playback state callback. Available since: 1.16.0 Description: This callback is triggered when the playback state of a audio effect of the audio effect player changes. Trigger: This callback is triggered when the playback status of the audio effect changes. Restrictions: None.- Parameters:
audioEffectPlayer
- Audio effect player instance that triggers this callback.audioEffectID
- The ID of the audio effect resource that triggered this callback.state
- The playback state of the audio effect.errorCode
- Error code, please refer to the error codes document https://docs.zegocloud.com/en/5548.html for details.
-
-