()
| 30 | protected volatile int ticknr = 0; |
| 31 | |
| 32 | public synchronized void start() { |
| 33 | run = true; |
| 34 | ticker = new Thread(this); |
| 35 | ticker.setName("Ticker Thread"); |
| 36 | ticker.start(); |
| 37 | } |
| 38 | |
| 39 | public synchronized void stop() { |
| 40 | // On context stop this can be called multiple times. |
no test coverage detected