com.jogamp.common.util
Interface RunnableExecutor

All Known Implementing Classes:
RunnableExecutor.CurrentThreadExecutor

public interface RunnableExecutor


Nested Class Summary
static class RunnableExecutor.CurrentThreadExecutor
           
 
Field Summary
static RunnableExecutor currentThreadExecutor
          This RunnableExecutor implementation simply invokes Runnable.run() on the current thread.
 
Method Summary
 void invoke(boolean wait, Runnable r)
           
 

Field Detail

currentThreadExecutor

static final RunnableExecutor currentThreadExecutor
This RunnableExecutor implementation simply invokes Runnable.run() on the current thread.

Method Detail

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.