Esempio n. 1
0
 def fetchStats(self, endpoint):
     amp = yield endpoint.connect(AMPFactory())
     stats = yield amp.callRemote(polecat.FetchRequestStats)
     defer.returnValue(stats)
Esempio n. 2
0
 def fetchStats(self, amp):
     return amp.callRemote(
         self.command, percentiles=PERCENTILES, lengths=LENGTHS)
Esempio n. 3
0
 def fetchStats(self, amp):
     return amp.callRemote(self.command)
Esempio n. 4
0
 def fetchStats(self, endpoint):
     amp = yield endpoint.connect(AMPFactory())
     stats = yield amp.callRemote(polecat.FetchRequestStats)
     defer.returnValue(stats)
Esempio n. 5
0
 def fetchStats(self, amp):
     return amp.callRemote(self.command, percentiles=PERCENTILES)
Esempio n. 6
0
 def fetchStats(self, amp):
     return amp.callRemote(self.command)