MCPcopy Create free account
hub / github.com/badvision/jace / doTick

Method doTick

src/main/java/jace/core/Device.java:156–158  ·  view source on GitHub ↗

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.

()

Source from the content-addressed store, hash-verified

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;

Callers 2

__doTickIsRunningMethod · 0.45
resumeMethod · 0.45

Calls 1

runMethod · 0.45

Tested by

no test coverage detected