コード例 #1
0
 def run(self):
     '''
     Maintains asynchronous connection. Should be called before any
     client-server communication (including connection setup) takes place.
     '''
     from tadek import connection
     connection.run()
コード例 #2
0
ファイル: device.py プロジェクト: mlyko/tadek-common
 def run(self):
     '''
     Maintains asynchronous connection. Should be called before any
     client-server communication (including connection setup) takes place.
     '''
     from tadek import connection
     connection.run()
コード例 #3
0
ファイル: daemon.py プロジェクト: tadek-project/tadek-daemon
 def run(self):
     '''
     Starts asyncore.loop().
     '''
     log.info("Starting daemon at %s:%d" % self.address)
     run()