def startService(self): Remoter.startService(self) self.connects = {} self.remotesByAuthKey = {} self.remotesById = {} self.dbpool.runInteraction(self.recache)
def startService(self): Remoter.startService(self) ## HTTP connection pools indexed by Ext.Direct Remote ID. ## Note that we usually do NOT want to recreate those on mere recaches ## since that would unnecessarily drop all currently kept alive connections. self.httppools = {} ## immediately cache self.dbpool.runInteraction(self.recache)
def stopService(self): Remoter.stopService(self)
def __init__(self, dbpool, services): Remoter.__init__(self, dbpool, services)