Package org.eclipse.jetty.util.thread
Class SerializedExecutor
- java.lang.Object
-
- org.eclipse.jetty.util.thread.SerializedExecutor
-
- All Implemented Interfaces:
java.util.concurrent.Executor
@Deprecated public class SerializedExecutor extends java.lang.Object implements java.util.concurrent.ExecutorDeprecated.This api is not supported anymore. Please do not use it.An executor than ensurers serial execution of submitted tasks.Callers of this execute will never block in the executor, but they may be required to either execute the task they submit or tasks submitted by other threads whilst they are executing tasks.
This class was inspired by the public domain class NonBlockingMutexExecutor
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceSerializedExecutor.ErrorHandlingTaskDeprecated.This api is not supported anymore.
-
Constructor Summary
Constructors Constructor Description SerializedExecutor()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidexecute(java.lang.Runnable task)Deprecated.
-