|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Step | |
|---|---|
| org.springframework.batch.core.job | Specific implementations of job concerns. |
| org.springframework.batch.core.job.flow | |
| org.springframework.batch.core.job.flow.support.state | |
| org.springframework.batch.core.partition.support | |
| org.springframework.batch.core.scope.context | |
| org.springframework.batch.core.step | Specific implementations of step concerns. |
| org.springframework.batch.core.step.tasklet | Interfaces and generic implementations of tasklet concerns. |
| Uses of Step in org.springframework.batch.core.job |
|---|
| Methods in org.springframework.batch.core.job that return Step | |
|---|---|
Step |
SimpleJob.getStep(java.lang.String stepName)
|
abstract Step |
AbstractJob.getStep(java.lang.String stepName)
Retrieve the step with the given name. |
| Methods in org.springframework.batch.core.job with parameters of type Step | |
|---|---|
void |
SimpleJob.addStep(Step step)
Convenience method for adding a single step to the job. |
protected StepExecution |
AbstractJob.handleStep(Step step,
JobExecution execution)
Convenience method for subclasses to delegate the handling of a specific step in the context of the current JobExecution. |
| Method parameters in org.springframework.batch.core.job with type arguments of type Step | |
|---|---|
void |
SimpleJob.setSteps(java.util.List<Step> steps)
Public setter for the steps in this job. |
| Uses of Step in org.springframework.batch.core.job.flow |
|---|
| Methods in org.springframework.batch.core.job.flow that return Step | |
|---|---|
Step |
FlowJob.getStep(java.lang.String stepName)
Retrieve the step with the given name. |
| Methods in org.springframework.batch.core.job.flow with parameters of type Step | |
|---|---|
java.lang.String |
FlowExecutor.executeStep(Step step)
|
| Uses of Step in org.springframework.batch.core.job.flow.support.state |
|---|
| Methods in org.springframework.batch.core.job.flow.support.state that return Step | |
|---|---|
Step |
StepState.getStep()
|
| Constructors in org.springframework.batch.core.job.flow.support.state with parameters of type Step | |
|---|---|
StepState(Step step)
|
|
StepState(java.lang.String name,
Step step)
|
|
| Uses of Step in org.springframework.batch.core.partition.support |
|---|
| Classes in org.springframework.batch.core.partition.support that implement Step | |
|---|---|
class |
PartitionStep
Implementation of Step which partitions the execution and spreads the
load using a PartitionHandler. |
| Methods in org.springframework.batch.core.partition.support with parameters of type Step | |
|---|---|
void |
TaskExecutorPartitionHandler.setStep(Step step)
Setter for the Step that will be used to execute the partitioned
StepExecution. |
| Constructors in org.springframework.batch.core.partition.support with parameters of type Step | |
|---|---|
SimpleStepExecutionSplitter(JobRepository jobRepository,
Step step)
|
|
SimpleStepExecutionSplitter(JobRepository jobRepository,
Step step,
Partitioner partitioner)
Construct a SimpleStepExecutionSplitter from its mandatory
properties. |
|
| Uses of Step in org.springframework.batch.core.scope.context |
|---|
| Methods in org.springframework.batch.core.scope.context with parameters of type Step | |
|---|---|
void |
StepScopeManager.execute(Step step,
StepExecution stepExecution)
|
| Uses of Step in org.springframework.batch.core.step |
|---|
| Classes in org.springframework.batch.core.step that implement Step | |
|---|---|
class |
AbstractStep
A Step implementation that provides common behavior to subclasses,
including registering and calling listeners. |
| Methods in org.springframework.batch.core.step that return Step | |
|---|---|
Step |
StepHolder.getStep()
|
Step |
StepLocator.getStep(java.lang.String stepName)
|
| Uses of Step in org.springframework.batch.core.step.tasklet |
|---|
| Classes in org.springframework.batch.core.step.tasklet that implement Step | |
|---|---|
class |
TaskletStep
Simple implementation of executing the step as a call to a Tasklet,
possibly repeated, and each call surrounded by a transaction. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||