Package org.springframework.batch.core.job.flow

Examples of org.springframework.batch.core.job.flow.State.handle()


    while (isFlowContinued(state, status, stepExecution)) {
      stateName = state.getName();

      try {
        logger.debug("Handling state="+stateName);
        status = state.handle(executor);
        stepExecution = executor.getStepExecution();
      }
      catch (FlowExecutionException e) {
        executor.close(new FlowExecution(stateName, status));
        throw e;
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.