Package org.springframework.batch.core.step.tasklet

Examples of org.springframework.batch.core.step.tasklet.Tasklet


  }

  @Test
  public void retryFailedExecution() throws Exception {
    this.job = this.jobs.get("job")
        .start(this.steps.get("step").tasklet(new Tasklet() {
          @Override
          public RepeatStatus execute(StepContribution contribution,
              ChunkContext chunkContext) throws Exception {
            throw new RuntimeException("Planned");
          }
View Full Code Here


  }

  @Test
  public void retryFailedExecutionWithNonIdentifyingParameters() throws Exception {
    this.job = this.jobs.get("job")
        .start(this.steps.get("step").tasklet(new Tasklet() {
          @Override
          public RepeatStatus execute(StepContribution contribution,
              ChunkContext chunkContext) throws Exception {
            throw new RuntimeException("Planned");
          }
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.step.tasklet.Tasklet

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.