This is called every tick, but it is critical that tick() should be overridden not this method! This is only overridable so timed device can implement timing semantics around this without interfering with the tick() method implementations.
()
| 154 | * semantics around this without interfering with the tick() method implementations. |
| 155 | */ |
| 156 | public void doTick() { |
| 157 | tickHandler.run(); |
| 158 | } |
| 159 | |
| 160 | public boolean isRunning() { |
| 161 | return run; |
no test coverage detected