Package org.springframework.batch.jsr.repeat

Examples of org.springframework.batch.jsr.repeat.CheckpointAlgorithmAdapter


   */
  public void setStepChunkCompletionPolicy(Object chunkCompletionPolicy) {
    if(chunkCompletionPolicy instanceof CompletionPolicy) {
      super.setChunkCompletionPolicy((CompletionPolicy) chunkCompletionPolicy);
    } else if(chunkCompletionPolicy instanceof CheckpointAlgorithm) {
      super.setChunkCompletionPolicy(new CheckpointAlgorithmAdapter((CheckpointAlgorithm) chunkCompletionPolicy));
    } else {
      throw new IllegalArgumentException("The definition of a chunk completion policy must implement either " +
          "org.springframework.batch.repeat.CompletionPolicy or javax.batch.api.chunk.CheckpointAlgorithm");
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.batch.jsr.repeat.CheckpointAlgorithmAdapter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.