Package io.rong.calllib
Interface IRongASRListener
-
- All Implemented Interfaces:
public interface IRongASRListenerCreated by RongCloud on 2025/8/8.
-
-
Method Summary
Modifier and Type Method Description abstract voidonReceiveASRContent(RCRTCASRContent realTimeSubtitle)收到语音识别回调通知 abstract voidonReceiveStopASR()收到关闭语音识别回调通知 abstract voidonReceiveStartASR()收到开启语音识别回调通知 abstract voidonASRError(int errorCode)语音识别错误回调通知 -
-
Method Detail
-
onReceiveASRContent
abstract void onReceiveASRContent(RCRTCASRContent realTimeSubtitle)
收到语音识别回调通知
- Parameters:
realTimeSubtitle- 语音识别数据
-
onReceiveStopASR
abstract void onReceiveStopASR()
收到关闭语音识别回调通知
-
onReceiveStartASR
abstract void onReceiveStartASR()
收到开启语音识别回调通知
-
onASRError
abstract void onASRError(int errorCode)
语音识别错误回调通知
-
-
-
-