The Threads subsystem is deprecated and may be removed or limited to managed domain legacy server use in future versions.
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.