The threading subsystem, used to declare manageable thread pools and resources.
Children (7)
blocking-bounded-queue-thread-pool A set of thread pools where tasks are stored in a bounded-size queue and where threads submitting tasks will block until space is available in the queue.
blocking-queueless-thread-pool A set of thread pools where are not queued and where threads submitting tasks will block until a pool thread is available to execute the task.
bounded-queue-thread-pool A set of thread pools where tasks are stored in a bounded-size queue and where if no space is available in the queue tasks will either be discarded or passed off to another 'handoff-executor' for execution.
queueless-thread-pool A set of thread pools where are not queued and where if no pool thread is available to handle a task the tasks will either be discarded or passed off to another 'handoff-executor' for execution.