Interface TaskConstants.Params
-
- Enclosing class:
- TaskConstants
public static interface TaskConstants.Params
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringEXCLUDED_NODESOptionally excludes these cluster nodes from performing tasks.static java.lang.StringPOLLING_INTERVALThe polling interval.static java.lang.StringSHUTDOWN_WAITThe amount of time (in seconds) waiting for completion of all tasks during shutdown process (see DefaultTaskService.destroy())static java.lang.StringTASK_PROCESSING_ENABLEDAllows enabling or disabling the task enginestatic java.lang.StringTASK_PROCESSING_ENABLED_LEGACYAllows enabling or disabling the task engine.static java.lang.StringWORKERS_IDLEThe time to keep a idle worker alive before he is removed.static java.lang.StringWORKERS_MAXThe maximum number of workers to process tasks with.
-
-
-
Field Detail
-
EXCLUDED_NODES
static final java.lang.String EXCLUDED_NODES
Optionally excludes these cluster nodes from performing tasks.- See Also:
- Constant Field Values
-
WORKERS_MAX
static final java.lang.String WORKERS_MAX
The maximum number of workers to process tasks with.- See Also:
- Constant Field Values
-
WORKERS_IDLE
static final java.lang.String WORKERS_IDLE
The time to keep a idle worker alive before he is removed. (Seconds)- See Also:
- Constant Field Values
-
POLLING_INTERVAL
static final java.lang.String POLLING_INTERVAL
The polling interval. The task engine will look for new tasks to be performed after this time. (Seconds)- See Also:
- Constant Field Values
-
SHUTDOWN_WAIT
static final java.lang.String SHUTDOWN_WAIT
The amount of time (in seconds) waiting for completion of all tasks during shutdown process (see DefaultTaskService.destroy())- See Also:
- Constant Field Values
-
TASK_PROCESSING_ENABLED
static final java.lang.String TASK_PROCESSING_ENABLED
Allows enabling or disabling the task engine- See Also:
- Constant Field Values
-
TASK_PROCESSING_ENABLED_LEGACY
static final java.lang.String TASK_PROCESSING_ENABLED_LEGACY
Allows enabling or disabling the task engine. This is the legacy parameter name replaced byTASK_PROCESSING_ENABLEDin release 5.5.1.- See Also:
- Constant Field Values
-
-