def fetchStats(self, endpoint): amp = yield endpoint.connect(AMPFactory()) stats = yield amp.callRemote(polecat.FetchRequestStats) defer.returnValue(stats)
def fetchStats(self, amp): return amp.callRemote( self.command, percentiles=PERCENTILES, lengths=LENGTHS)
def fetchStats(self, amp): return amp.callRemote(self.command)
def fetchStats(self, amp): return amp.callRemote(self.command, percentiles=PERCENTILES)