Package org.apache.axis2.jaxws.utility
Interface ExecutorFactory
-
- All Known Implementing Classes:
JAXWSExecutorFactory
public interface ExecutorFactoryThis is the interface that should be implemented by classes that wish to provide Executor instances to the JAX-WS runtime. When the runtime needs an Executor instance it will look in the FactoryRegistry for an implementation of this factory and retrieve the instance.
-
-
Field Summary
Fields Modifier and Type Field Description static intCLIENT_EXECUTORstatic intSERVER_EXECUTOR
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExecutorgetExecutorInstance()ExecutorgetExecutorInstance(int executorType)
-
-
-
Field Detail
-
CLIENT_EXECUTOR
static final int CLIENT_EXECUTOR
- See Also:
- Constant Field Values
-
SERVER_EXECUTOR
static final int SERVER_EXECUTOR
- See Also:
- Constant Field Values
-
-