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 String
CORE_POOL_SIZE
static String
KEEP_ALIVE_TIME
The time in milliseconds that threads overCORE_POOL_SIZE
will be kept alive.static String
MAX_POOL_SIZE
static String
QUEUE_SIZE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<JobAcquisitionXml>
getJobAcquisitions()
Map<String,String>
getProperties()
-
-
-
Field Detail
-
QUEUE_SIZE
static final String QUEUE_SIZE
- See Also:
- Constant Field Values
-
CORE_POOL_SIZE
static final String CORE_POOL_SIZE
- See Also:
- Constant Field Values
-
MAX_POOL_SIZE
static final String MAX_POOL_SIZE
- See Also:
- Constant Field Values
-
KEEP_ALIVE_TIME
static final 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
List<JobAcquisitionXml> getJobAcquisitions()
- Returns:
- a list of configured JobAcquisitions.
-
getProperties
Map<String,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
-
-