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

Method resume

src/main/java/jace/core/Device.java:249–257  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

247 }
248
249 public void resume() {
250 // Resuming children pre-emptively might lead to unexpected behavior
251 // Don't do that unless we really mean to (such as cold-starting the computer)
252 // children.forEach(Device::resume);
253 if (!isRunning()) {
254 setRun(true);
255 waitCycles = 0;
256 }
257 }
258
259 public void attach() {
260 isAttached = true;

Callers 7

whileSuspendedMethod · 0.95
resumeAllMethod · 0.95
clearDebugMethod · 0.45
reconfigureMethod · 0.45
rewindMethod · 0.45
pauseClickedMethod · 0.45
initMethod · 0.45

Calls 2

isRunningMethod · 0.95
setRunMethod · 0.95

Tested by

no test coverage detected