This commit is contained in:
zhongchao
2021-02-07 17:57:57 +08:00
9 changed files with 160 additions and 264 deletions

View File

@@ -108,12 +108,12 @@ public class TrafficLiveManager implements ILiveProgressListener {
}
@Override
public void onStart() {
public void onEngineStart() {
callBack.onLiveStart();
}
@Override
public void onStop() {
public void onEngineStop() {
callBack.onLiveStop();
}
@@ -134,6 +134,11 @@ public class TrafficLiveManager implements ILiveProgressListener {
callBack.onDisConnect();
}
@Override
public void onRoomOnlineUserCountUpdate(int count) {
}
@Override
public void onDebugError(int errorCode, String funcName, String errorInfo) {
Logger.e(TAG, "onDebugError errorCode : " + errorCode + " funcName : " + funcName + " errorInfo : " + errorInfo);