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;