Example #1
0
 def lineReceived(self, data):
     """Called to dispatch a fully-delimited CRLF command"""
     try:
         reqData = json.loads(data)
     except:
         return
     if "request" in reqData:
         Dispatcher.get().dispatchCommand(self, reqData)