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

Method dequeueEvents

core/src/processing/core/PApplet.java:2646–2660  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2644
2645
2646 protected void dequeueEvents() {
2647 synchronized (eventQueueDequeueLock) {
2648 while (!eventQueue.isEmpty()) {
2649 Event e = eventQueue.remove();
2650 switch (e.getFlavor()) {
2651 case Event.MOUSE:
2652 handleMouseEvent((MouseEvent) e);
2653 break;
2654 case Event.KEY:
2655 handleKeyEvent((KeyEvent) e);
2656 break;
2657 }
2658 }
2659 }
2660 }
2661
2662
2663 //////////////////////////////////////////////////////////////

Callers 2

handleDrawMethod · 0.95
postEventMethod · 0.95

Calls 4

getFlavorMethod · 0.95
handleMouseEventMethod · 0.95
handleKeyEventMethod · 0.95
removeMethod · 0.45

Tested by

no test coverage detected