Uses of Interface
org.springframework.batch.core.job.flow.JobExecutionDecider

Packages that use JobExecutionDecider
org.springframework.batch.core.job.builder   
org.springframework.batch.core.job.flow.support.state   
org.springframework.batch.sample.loop   
 

Uses of JobExecutionDecider in org.springframework.batch.core.job.builder
 

Methods in org.springframework.batch.core.job.builder with parameters of type JobExecutionDecider
 FlowBuilder.UnterminatedFlowBuilder<Q> FlowBuilder.from(JobExecutionDecider decider)
          Start again from a decision that was already registered.
 JobFlowBuilder SimpleJobBuilder.next(JobExecutionDecider decider)
          Continue with this decider if the previous step was successful.
 FlowBuilder.UnterminatedFlowBuilder<Q> FlowBuilder.next(JobExecutionDecider decider)
          Transition to the decider on successful completion of the current step.
 JobFlowBuilder SimpleJobBuilder.start(JobExecutionDecider decider)
          Start with this decider.
 FlowBuilder.UnterminatedFlowBuilder<Q> FlowBuilder.start(JobExecutionDecider decider)
          If a flow should start with a decision use this as the first state.
 FlowBuilder<Q> FlowBuilder.TransitionBuilder.stopAndRestart(JobExecutionDecider decider)
          Stop the flow and provide a decider to start with if the flow is restarted.
 FlowBuilder<Q> FlowBuilder.TransitionBuilder.to(JobExecutionDecider decider)
          Specify the next state as a decision.
 

Constructors in org.springframework.batch.core.job.builder with parameters of type JobExecutionDecider
JobFlowBuilder(FlowJobBuilder parent, JobExecutionDecider decider)
           
 

Uses of JobExecutionDecider in org.springframework.batch.core.job.flow.support.state
 

Constructors in org.springframework.batch.core.job.flow.support.state with parameters of type JobExecutionDecider
DecisionState(JobExecutionDecider decider, String name)
           
 

Uses of JobExecutionDecider in org.springframework.batch.sample.loop
 

Classes in org.springframework.batch.sample.loop that implement JobExecutionDecider
 class LimitDecider
          This decider will return "CONTINUE" until the limit it reached, at which point it will return "COMPLETE".
 



Copyright © 2013 SpringSource. All Rights Reserved.