zouxuan 4 年之前
父节点
当前提交
c08a0e6ab5
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      edu-im/edu-im-server/src/main/java/com/keao/edu/im/service/RoomService.java

+ 6 - 0
edu-im/edu-im-server/src/main/java/com/keao/edu/im/service/RoomService.java

@@ -16,6 +16,12 @@ public interface RoomService {
 
     Boolean leaveRoom(Long registrationId,String roomId,String userId) throws Exception;
 
+    public void joinRoomSuccess(String roomId,String userId) throws Exception;
+
+    public void leaveRoomSuccess(String roomId,String userId) throws Exception;
+
+    public void resourceChange(String roomId,String userId,List<Member> members) throws Exception;
+
     //only host
     Boolean downgrade(String roomId, List<ReqChangeUserRoleData.ChangedUser> users) throws Exception;