123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- using System.Collections.Generic;
- using Blue;
- public interface IRTCService : IService
- {
- Dictionary<int, RTCUserInfo> mUserDic{ get; }
-
-
-
- void CloseRTC();
-
-
-
- void GetToken();
-
-
-
- void CreatRoom();
-
-
-
- void ConnectByRTCUrl(string URL);
-
-
-
- void JoinRoom(int roomId);
-
-
-
- void LeaveRoom();
-
-
-
- void ActiveVideo(bool active);
-
-
-
- void ActiveAudio(bool active);
-
-
-
- void MuteRemoteVideoStream(string userID, bool active);
-
-
-
- void MuteRemoteAudioStream(string userID, bool active);
-
-
-
- void MuteVideo(bool active);
-
-
-
- void MuteAudio(bool active);
-
-
-
- void LocalVideo(bool active);
-
-
-
- void LoacalAudio(bool active);
- }
|