コード例 #1
0
ファイル: udp_chat_client.py プロジェクト: enricodhd/c2w
 def updateUserList(self, movieName=None):
     """refresh the userList in the room"""
     userList = util.adaptUserList(self.users, movieName=movieName)
     self.clientProxy.setUserListONE(userList)
コード例 #2
0
ファイル: udp_chat_client.py プロジェクト: enricodhd/c2w
 def showMainRoom(self):
     """init the main room"""
     userList = util.adaptUserList(self.users)
     movieList = util.adaptMovieList(self.movieList)
     self.clientProxy.initCompleteONE(userList, movieList)