|
GlueGen v2.6.0-rc-20250712
GlueGen, Native Binding Generator for Java (public API).
|
Classes | |
| class | CurrentThreadExecutor |
Public Member Functions | |
| void | invoke (boolean wait, Runnable r) |
Static Public Attributes | |
| static final RunnableExecutor | currentThreadExecutor = new CurrentThreadExecutor() |
This RunnableExecutor implementation simply invokes Runnable#run() on the current thread. More... | |
Definition at line 30 of file RunnableExecutor.java.
| void com.jogamp.common.util.RunnableExecutor.invoke | ( | boolean | wait, |
| Runnable | r | ||
| ) |
| wait | if true method waits until Runnable#run() is completed, otherwise don't wait. |
| r | the Runnable to be executed. |
Implemented in com.jogamp.common.util.awt.AWTEDTExecutor, and com.jogamp.common.util.RunnableExecutor.CurrentThreadExecutor.
|
static |
This RunnableExecutor implementation simply invokes Runnable#run() on the current thread.
Definition at line 34 of file RunnableExecutor.java.