コード例 #1
0
ファイル: host_workers.py プロジェクト: bsherin/tactic
 def __init__(self, app, megaplex_address, socketio):
     QWorker.__init__(self, app, megaplex_address, "client")
     self.socketio = socketio
コード例 #2
0
ファイル: tile_base.py プロジェクト: bsherin/tactic
 def init_qworker(self, app, megaplex_address):
     QWorker.__init__(self, app, megaplex_address, self.tile_id)
     return
コード例 #3
0
ファイル: host_workers.py プロジェクト: bsherin/tactic
 def __init__(self, app, megaplex_address):
     QWorker.__init__(self, app, megaplex_address, "host")
     self.temp_dict = {}
     self.last_check_for_dead_containers = datetime.datetime.today()