Example usage for org.springframework.batch.core.partition.support DefaultStepExecutionAggregator DefaultStepExecutionAggregator

List of usage examples for org.springframework.batch.core.partition.support DefaultStepExecutionAggregator DefaultStepExecutionAggregator

Introduction

In this page you can find the example usage for org.springframework.batch.core.partition.support DefaultStepExecutionAggregator DefaultStepExecutionAggregator.

Prototype

DefaultStepExecutionAggregator

Source Link

Usage

From source file:com.javaetmoi.core.batch.test.EndTasklet.java

private StepExecution getUnpartitionedStepResume(JobExecution jobExecution) {
    StepExecution result = new StepExecution("resume", jobExecution);
    new DefaultStepExecutionAggregator().aggregate(result, getUnpartitionedStepExecution(jobExecution));
    return result;
}