WildFly Threads Subsystem Concepts

From NovaOrdis Knowledge Base
Jump to navigation Jump to search

Internal

Executor Model

Thread pools defined by the "threads" subsystem can be shared between WildFly components that are compatible with the executor model. An example of such components are JBoss Web connectors.

An executor is an asynchronous execution mechanism capable of executing tasks in the background. The terms "executor" and "thread pool" are equivalent in this context and can be used interchangeably. Also see java.util.concurrent Executors.

An executor needs a thread factory, that instantiates the threads required by the executor. The thread factory must be defined within the subsystem configuration and referred to from within the executor definition.

For details on how to configure an executor and its associated thread factory, see:

WildFly Threads Subsystem Configuration

How Does it Relate to JBossWeb?

JBossWeb Threading Model

How Does it Relate to Undertow?

Undertow Threading Model

How Does it Relate to Remoting?

Remoting Threading Model

How Does it Relate to HornetQ?

HornetQ Threading Model

How Does it Relate to EJB?