Interface JobExecutorXml
-
- All Known Implementing Classes:
JobExecutorXmlImpl
public interface JobExecutorXml
Deployment Metadata for the JobExecutor Service.
- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CORE_POOL_SIZE
static java.lang.String
KEEP_ALIVE_TIME
The time in milliseconds that threads overCORE_POOL_SIZE
will be kept alive.static java.lang.String
MAX_POOL_SIZE
static java.lang.String
QUEUE_SIZE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<JobAcquisitionXml>
getJobAcquisitions()
java.util.Map<java.lang.String,java.lang.String>
getProperties()
-
-
-
Field Detail
-
QUEUE_SIZE
static final java.lang.String QUEUE_SIZE
- See Also:
- Constant Field Values
-
CORE_POOL_SIZE
static final java.lang.String CORE_POOL_SIZE
- See Also:
- Constant Field Values
-
MAX_POOL_SIZE
static final java.lang.String MAX_POOL_SIZE
- See Also:
- Constant Field Values
-
KEEP_ALIVE_TIME
static final java.lang.String KEEP_ALIVE_TIME
The time in milliseconds that threads overCORE_POOL_SIZE
will be kept alive.- See Also:
- Constant Field Values
-
-
Method Detail
-
getJobAcquisitions
java.util.List<JobAcquisitionXml> getJobAcquisitions()
- Returns:
- a list of configured JobAcquisitions.
-
getProperties
java.util.Map<java.lang.String,java.lang.String> getProperties()
- Returns:
- a set of properties to configure the Job Executor.
- See Also:
QUEUE_SIZE
,CORE_POOL_SIZE
,MAX_POOL_SIZE
,KEEP_ALIVE_TIME
-
-