def sendLoginAuthentification(self):
     LoginModel = RequestModel(0, self.Login)
     self.WebSockets.sendTextMessage(LoginModel.to_JSON())
示例#2
0
 def OnProcessTextMessage(self,  message):
     RequestDecoded = RequestModel.from_JSON(message)
     self.SwitchRequestMethod(RequestDecoded.request)(RequestDecoded.Message)