Package org.springframework.batch.core.launch.support

Examples of org.springframework.batch.core.launch.support.SystemExiter


public class Main {

  public static void main(String[] args) throws Exception {
    final Queue<Integer> exitCode = new ArrayBlockingQueue<Integer>(1);
    CommandLineJobRunner.presetSystemExiter(new SystemExiter() {     
      @Override
      public void exit(int status) {
        exitCode.add(status);
      }
    });
View Full Code Here

TOP

Related Classes of org.springframework.batch.core.launch.support.SystemExiter

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.