コード例 #1
0
ファイル: websocket.py プロジェクト: PythonicNinja/django-ddp
 def recv_method(self, method, params, id_, randomSeed=None):
     """DDP method handler."""
     if randomSeed is not None:
         this.random_streams.random_seed = randomSeed
         this.alea_random = alea.Alea(randomSeed)
     API.method(method, params, id_)
     self.reply('updated', methods=[id_])