Package org.apache.camel.util.concurrent

Concurrent utility classes

See:
          Description

Class Summary
AtomicException Convenience class for holding an Exception in a thread-safe way
AtomicExchange Convenience class for holding an Exchange in a thread-safe way
CamelThreadFactory Thread factory which creates threads supporting a naming pattern.
RejectableFutureTask<V> A Rejectable FutureTask used by RejectableThreadPoolExecutor.
RejectableScheduledThreadPoolExecutor Scheduled thread pool executor that creates RejectableFutureTask instead of FutureTask when registering new tasks for execution.
RejectableThreadPoolExecutor Thread pool executor that creates RejectableFutureTask instead of FutureTask when registering new tasks for execution.
SizedScheduledExecutorService A sized ScheduledExecutorService which will reject executing tasks if the task queue is full.
SubmitOrderedCompletionService<V> A CompletionService that orders the completed tasks in the same order as they where submitted.
SynchronousExecutorService A synchronous ExecutorService which always invokes the task in the caller thread (just a thread pool facade).
ThreadHelper Various helper method for thread naming.
 

Package org.apache.camel.util.concurrent Description

Concurrent utility classes



Apache CAMEL