Package org.eclipse.jetty.util.thread.strategy
-
Class Summary Class Description EatWhatYouKill A strategy where the thread that produces will run the resulting task if it is possible to do so without thread starvation.ExecuteProduceConsume A strategy where the thread that produces will always run the resulting task.ProduceConsume A strategy where the caller thread iterates over task production, submitting each task to anExecutor
for execution.ProduceExecuteConsume A strategy where the caller thread iterates over task production, submitting each task to anExecutor
for execution.