1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using System.Collections.Generic;
- using Blue;
- public interface IRTCService : IService
- {
- Dictionary<int, RTCUserInfo> mUserDic{ get; }
-
-
-
- void CreatRoom();
-
-
-
- void JoinRoom(string roomId);
-
-
-
- void ConnectByRTCUrl(string URL);
-
-
-
- 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);
- }
|