Package org.eclipse.jetty.util.thread
Interface ExecutionStrategy.Producer
-
- Enclosing interface:
- ExecutionStrategy
@Deprecated public static interface ExecutionStrategy.ProducerDeprecated.This api is not supported anymore. Please do not use it.A producer of
Runnabletasks to run.The
ExecutionStrategywill repeatedly invokeproduce()until the producer returns null, indicating that it has nothing more to produce.When no more tasks can be produced, implementations should arrange for the
ExecutionStrategyto be invoked again in case an external event resumes the tasks production.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.Runnableproduce()Deprecated.Produces a task to be executed.
-