public interface PropertyKey
Modifier and Type | Field and Description |
---|---|
static String |
ANALYZER_TX_DISABLED
A key used to disable transactions around calls to
PartitionAnalyzer . |
static String |
INFINISPAN_XML
A key used to specify the resource path to the configuration XML for configuring infinispan job repository.
|
static String |
LOCAL_TX
A key used to indicate transactions should be kept local and not use the global transaction.
|
static String |
LOOP_ALLOWED
A job parameter key used to allow loop between steps and other job execution elements.
|
static String |
RESTART_MODE
A key used to specify restart mode as an optional restart job parameter.
|
static String |
RESTART_MODE_DETECT |
static String |
RESTART_MODE_FORCE |
static String |
RESTART_MODE_STRICT |
static String |
RESTART_POSITION
A job parameter key used to specify a custom restart position to override the default
restart position.
|
static String |
SPLIT_TIMEOUT_SECONDS
A key used to specify the number of seconds the split execution will wait for its constituent flows to complete.
|
static final String LOCAL_TX
true
or false
.
This property can be used at the job parameter for users or for implementations of the SPI at the BatchEnvironment.getBatchConfigurationProperties()
batch environment} level.static final String INFINISPAN_XML
static final String SPLIT_TIMEOUT_SECONDS
Its value should be a positive integer.
If this amount of time elapses before all flows complete, the split execution will fail with
javax.batch.operations.BatchRuntimeException
.
If no such job parameter or job property is present, the split execution will wait infinitely for its flows to
complete.
static final String RESTART_MODE
detect
is the default value.
static final String RESTART_MODE_STRICT
static final String RESTART_MODE_FORCE
static final String RESTART_MODE_DETECT
static final String RESTART_POSITION
static final String LOOP_ALLOWED
true
, loop is allowed.
Note that loop is prohibited by default as per spec requirement. Allowing loop may cause infinite loop during job execution and should only be used with caution.
static final String ANALYZER_TX_DISABLED
PartitionAnalyzer
.
Transactions around calls to PartitionAnalyzer
might time out in long running steps which can
be prevented by disabling the transaction using this property.Copyright © 2019 JBoss by Red Hat. All rights reserved.