Exemple #1
0
    def startService(self):
        Remoter.startService(self)

        self.connects = {}
        self.remotesByAuthKey = {}
        self.remotesById = {}

        self.dbpool.runInteraction(self.recache)
   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)
Exemple #4
0
    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)
Exemple #5
0
 def stopService(self):
     Remoter.stopService(self)
Exemple #6
0
 def __init__(self, dbpool, services):
     Remoter.__init__(self, dbpool, services)
 def stopService(self):
    Remoter.stopService(self)
 def __init__(self, dbpool, services):
    Remoter.__init__(self, dbpool, services)