MCPcopy Index your code
hub / github.com/processing/processing / startThread

Method startThread

core/src/processing/core/PSurfaceNone.java:186–194  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

184
185
186 public void startThread() {
187 if (thread == null) {
188 thread = createThread();
189 thread.start();
190 } else {
191 throw new IllegalStateException("Thread already started in " +
192 getClass().getSimpleName());
193 }
194 }
195
196
197 public boolean stopThread() {

Callers

nothing calls this directly

Calls 2

createThreadMethod · 0.95
startMethod · 0.45

Tested by

no test coverage detected