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

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

Introduction

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

Prototype

SimplePartitioner

Source Link

Usage

From source file:com.apress.prospringintegration.springbatch.partition.PartitionConfiguration.java

@Bean
public SimplePartitioner partitioner() {
    SimplePartitioner simplePartitioner = new SimplePartitioner();
    return simplePartitioner;
}