Exemplo n.º 1
0
 def restart(self):
     util.fork(self.blocking_restart)
Exemplo n.º 2
0
 def kill(self):
     util.fork(self.blocking_kill)
Exemplo n.º 3
0
 def stop(self):
     util.fork(self.blocking_stop)
Exemplo n.º 4
0
 def start(self):
     self._status('Starting')
     self._router = Router(self._config_path, self._props)
     util.fork(self._router.runRouter)
     self._wait_for_alive()