public interface IRenderQueue
Application
, but in this case we have a
different hierarchy and only need to know that an object can queue a task for
a jME rendering thread.enqueue(Callable)
Modifier and Type | Method and Description |
---|---|
<T> java.util.concurrent.Future<T> |
enqueue(java.util.concurrent.Callable<T> callable)
Queues a rendering task.
|
<T> java.util.concurrent.Future<T> enqueue(java.util.concurrent.Callable<T> callable)
Callable
should be
run on the IRenderQueue
's associated rendering thread.callable
- The operation to execute on the associated rendering thread.Callable
is null or otherwise cannot be executed.