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