List of usage examples for org.springframework.batch.item ExecutionContext getLong
public long getLong(String key, long defaultLong)
From source file:org.springframework.batch.core.partition.ExampleItemReader.java
@Override public void open(ExecutionContext executionContext) throws ItemStreamException { super.open(executionContext); index = (int) executionContext.getLong(getExecutionContextKey("POSITION"), min); }