MCPcopy Index your code
hub / github.com/benfry/processing4 / thread

Method thread

core/src/processing/core/PApplet.java:3507–3509  ·  view source on GitHub ↗

Processing sketches follow a specific sequence of steps: setup() first, followed by draw() over and over and over again in a loop. A thread is also a series of steps with a beginning, a middle, and an end. A Processing sketch is a single thread, often referred to as the "Animation" thr

(final String name)

Source from the content-addressed store, hash-verified

3505 * @see PApplet#noLoop()
3506 */
3507 public void thread(final String name) {
3508 new Thread(() -> method(name)).start();
3509 }
3510
3511
3512

Callers 4

exceptionEventMethod · 0.80
vmClassPrepareEventMethod · 0.80
vmBreakPointEventMethod · 0.80
vmStepEventMethod · 0.80

Calls 2

methodMethod · 0.95
startMethod · 0.45

Tested by

no test coverage detected