Package javax.batch.api.partition
Class PartitionPlanImpl
- java.lang.Object
-
- javax.batch.api.partition.PartitionPlanImpl
-
- All Implemented Interfaces:
PartitionPlan
public class PartitionPlanImpl extends java.lang.Object implements PartitionPlan
The PartitionPlanImpl class provides a basic implementation of the PartitionPlan interface.
-
-
Field Summary
Fields Modifier and Type Field Description private booleanoverride(package private) java.util.Properties[]partitionPropertiesprivate intpartitionsprivate intthreads
-
Constructor Summary
Constructors Constructor Description PartitionPlanImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Properties[]getPartitionProperties()Gets array of Partition Properties objects for Partitions.intgetPartitions()Gets count of Partitions.booleangetPartitionsOverride()Return current value of partition override setting.intgetThreads()Gets count of threads.voidsetPartitionProperties(java.util.Properties[] props)Sets array of substitution Properties objects for the set of Partitions.voidsetPartitions(int count)Set number of partitions.voidsetPartitionsOverride(boolean override)Specify whether or not to override the partition count from the previous job execution.voidsetThreads(int count)Set number of threads.
-
-
-
Method Detail
-
setPartitions
public void setPartitions(int count)
Description copied from interface:PartitionPlanSet number of partitions.- Specified by:
setPartitionsin interfacePartitionPlan- Parameters:
count- specifies the partition count
-
setThreads
public void setThreads(int count)
Description copied from interface:PartitionPlanSet number of threads. Defaults to zero, which means thread count is equal to partition count.- Specified by:
setThreadsin interfacePartitionPlan- Parameters:
count- specifies the thread count
-
setPartitionsOverride
public void setPartitionsOverride(boolean override)
Description copied from interface:PartitionPlanSpecify whether or not to override the partition count from the previous job execution. This applies only to step restart. The default is false.When false is specified, the partition count from the previous job execution is used and any new value set for partition count in the current run is ignored. In addition, partition results from the previous job execution are remembered, and only incomplete partitions are reprocessed.
When true is specified, the partition count from the current run is used and all results from past partitions are discarded. Any resource cleanup or back out of work done in the previous run is the responsibility of the application. The PartitionReducer artifact's rollbackPartitionedStep method is invoked during restart before any partitions begin processing to provide a cleanup hook.
- Specified by:
setPartitionsOverridein interfacePartitionPlan
-
getPartitionsOverride
public boolean getPartitionsOverride()
Description copied from interface:PartitionPlanReturn current value of partition override setting.- Specified by:
getPartitionsOverridein interfacePartitionPlan- Returns:
- override setting.
-
setPartitionProperties
public void setPartitionProperties(java.util.Properties[] props)
Description copied from interface:PartitionPlanSets array of substitution Properties objects for the set of Partitions.- Specified by:
setPartitionPropertiesin interfacePartitionPlan- Parameters:
props- specifies the Properties object array
-
getPartitions
public int getPartitions()
Description copied from interface:PartitionPlanGets count of Partitions.- Specified by:
getPartitionsin interfacePartitionPlan- Returns:
- Partition count
-
getThreads
public int getThreads()
Description copied from interface:PartitionPlanGets count of threads.- Specified by:
getThreadsin interfacePartitionPlan- Returns:
- thread count
-
getPartitionProperties
public java.util.Properties[] getPartitionProperties()
Description copied from interface:PartitionPlanGets array of Partition Properties objects for Partitions.- Specified by:
getPartitionPropertiesin interfacePartitionPlan- Returns:
- Partition Properties object array
-
-