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)
Ejemplo n.º 5
0
 def stopService(self):
     Remoter.stopService(self)
Ejemplo n.º 6
0
 def __init__(self, dbpool, services):
     Remoter.__init__(self, dbpool, services)
Ejemplo n.º 7
0
 def stopService(self):
    Remoter.stopService(self)
Ejemplo n.º 8
0
 def __init__(self, dbpool, services):
    Remoter.__init__(self, dbpool, services)