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

Method setRun

src/main/java/jace/core/Device.java:168–175  ·  view source on GitHub ↗
(boolean run)

Source from the content-addressed store, hash-verified

166 }
167
168 public final synchronized void setRun(boolean run) {
169 // if (this.run != run) {
170 // System.out.println(getDeviceName() + " " + (run ? "RUN" : "STOP"));
171 // Thread.dumpStack();
172 // }
173 this.run = run;
174 updateTickHandler();
175 }
176
177 public synchronized void setPaused(boolean paused) {
178 // if (this.paused != paused) {

Callers 3

suspendMethod · 0.95
resumeMethod · 0.95
tickMethod · 0.80

Calls 1

updateTickHandlerMethod · 0.95

Tested by

no test coverage detected