Package | Description |
---|---|
org.eclipse.jetty.io |
Jetty IO : Core classes for Jetty IO subsystem
|
org.eclipse.jetty.util.thread.strategy |
Modifier and Type | Field and Description |
---|---|
private ExecutionStrategy |
ManagedSelector._strategy |
Modifier and Type | Class and Description |
---|---|
class |
EatWhatYouKill
A strategy where the thread that produces will run the resulting task if it
is possible to do so without thread starvation.
|
class |
ExecuteProduceConsume
A strategy where the thread that produces will always run the resulting task.
|
class |
ProduceConsume
A strategy where the caller thread iterates over task production, submitting each
task to an
Executor for execution. |
class |
ProduceExecuteConsume
A strategy where the caller thread iterates over task production, submitting each
task to an
Executor for execution. |