Ejemplo n.º 1
0
   def startService(self):
      Remoter.startService(self)

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

      self.dbpool.runInteraction(self.recache)
Ejemplo n.º 2
0
    def startService(self):
        Remoter.startService(self)

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

        self.dbpool.runInteraction(self.recache)
Ejemplo n.º 3
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)
Ejemplo n.º 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)