Examples of executeStep()


Examples of org.springframework.batch.core.job.flow.FlowExecutor.executeStep()

            throws JobInterruptedException, JobRestartException, StartLimitExceededException {
        Step step = createTestStep("testExecuteStep");
        String stepName = step.getName();
        FlowExecutor executor = createFlowExecutor("testExecuteJob", stepName);

        executor.executeStep(step);

        Operation op = assertOperationDetails(getFirstEntered(), "executeStep", step.getName());
        assertOperationPath(op, null, stepName);
    }
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.