コード例 #1
0
ファイル: _protocol.py プロジェクト: Elenw/flocker
 def locateResponder(self, name):
     """
     Do normal responder lookup, reset the connection timeout and record
     this activity.
     """
     self._timeout.reset()
     self._source.set_last_activity(self._reactor.seconds())
     return CommandLocator.locateResponder(self, name)
コード例 #2
0
 def locateResponder(self, name):
     """
     Do normal responder lookup, reset the connection timeout and record
     this activity.
     """
     self._timeout.reset()
     self._source.set_last_activity(self._reactor.seconds())
     return CommandLocator.locateResponder(self, name)
コード例 #3
0
ファイル: _protocol.py プロジェクト: Elenw/flocker
 def locateResponder(self, name):
     """
     Do normal responder lookup and reset the connection timeout.
     """
     self._timeout.reset()
     return CommandLocator.locateResponder(self, name)
コード例 #4
0
 def locateResponder(self, name):
     """
     Do normal responder lookup and reset the connection timeout.
     """
     self._timeout.reset()
     return CommandLocator.locateResponder(self, name)
コード例 #5
0
ファイル: _protocol.py プロジェクト: stmcginnis/flocker
 def locateResponder(self, name):
     """
     Do normal responder lookup and also record this activity.
     """
     self._source.set_last_activity(self._reactor.seconds())
     return CommandLocator.locateResponder(self, name)
コード例 #6
0
ファイル: _protocol.py プロジェクト: jongiddy/flocker
 def locateResponder(self, name):
     """
     Do normal responder lookup and also record this activity.
     """
     self._source.set_last_activity(self._reactor.seconds())
     return CommandLocator.locateResponder(self, name)