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

Examples of org.springframework.batch.core.job.flow.Flow.resume()


            public Collection<State> getStates() {
                return Collections.emptyList();
            }
        };
        flow.resume("test", flowExecutor);

        Operation op = assertOperationDetails(getLastEntered(), "resume", flow.getName());
        assertEquals("Mismatched state value", "test", op.get("flowState", String.class));
        assertOperationPath(op, flowExecutor);
    }
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.