Run runs worker forever
()
| 67 | |
| 68 | // Run runs worker forever |
| 69 | func (w *Worker) Run() { |
| 70 | w.registerWorker() |
| 71 | go w.runHTTPServer() |
| 72 | w.runSchedule() |
| 73 | } |
| 74 | |
| 75 | // Halt stops all jobs |
| 76 | func (w *Worker) Halt() { |
nothing calls this directly
no test coverage detected