Examples of StepInterruptionPolicy


Examples of org.springframework.batch.core.step.StepInterruptionPolicy

  }

  @Test
  public void testStatusForInterruptedException() throws Exception {

    StepInterruptionPolicy interruptionPolicy = new StepInterruptionPolicy() {

      @Override
      public void checkInterrupted(StepExecution stepExecution) throws JobInterruptedException {
        throw new JobInterruptedException("interrupted");
      }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.