com.jogamp.common.util
Interface RunnableExecutor
- All Known Implementing Classes:
- AWTEDTExecutor, RunnableExecutor.CurrentThreadExecutor
public interface RunnableExecutor
currentThreadExecutor
static final RunnableExecutor currentThreadExecutor
- This
RunnableExecutor
implementation simply invokes Runnable.run()
on the current thread.
invoke
void invoke(boolean wait,
Runnable r)
- Parameters:
wait
- if true method waits until Runnable.run()
is completed, otherwise don't wait.r
- the Runnable
to be executed.