Ejemplo n.º 1
0
 def startService(self):
     if not self.enable_service:
         return
     self.parent.db.runInteractionNow(self._startService)
     BaseScheduler.startService(self)
Ejemplo n.º 2
0
 def startService(self):
     self.parent.db.runInteractionNow(self._startService)
     BaseScheduler.startService(self)
Ejemplo n.º 3
0
 def startService(self):
     if not self.enable_service:
         return
     self.parent.db.runInteractionNow(self._startService)
     BaseScheduler.startService(self)
Ejemplo n.º 4
0
 def startService(self):
     BaseScheduler.startService(self)
     self.poller = reactor.callLater(10, self.poll)
Ejemplo n.º 5
0
    def startService(self):
        BaseScheduler.startService(self)

        for b in self.builderNames:
            bld = self.master.status.getBuilder(b)
            bld.subscribe(self)