Esempio n. 1
0
 // doLeaveRoomCB
 // calls the leave room callback to the appropriate client
 public void doLeaveRoomCB(String userName, String roomName) throws RemoteException {
   clientCallbackObj.leaveRoomCB(userName, roomName);
 }
Esempio n. 2
0
 // doRemoveUserCB
 // calls the remove user callback to the appropriate client
 public void doRemoveUserCB(String userName) throws RemoteException {
   clientCallbackObj.removeUserCB(userName);
 }
Esempio n. 3
0
 // doRemoveRoomCB
 // calls the remove room callback to the appropriate client
 public void doRemoveRoomCB(String roomName) throws RemoteException {
   clientCallbackObj.removeRoomCB(roomName);
 }
Esempio n. 4
0
 // doMessageCB
 // calls the message callback to the appropriate client
 public void doMessageCB(String incomingMsg, String roomName) throws RemoteException {
   clientCallbackObj.messageCB(incomingMsg, roomName);
 }