Package | Description |
---|---|
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.job | |
org.springframework.batch.core.step.tasklet |
Interfaces and generic implementations of tasklet concerns.
|
org.springframework.batch.test |
Modifier and Type | Method and Description |
---|---|
abstract Step |
AbstractJob.getStep(String stepName)
Retrieve the step with the given name.
|
Step |
SimpleJob.getStep(String stepName) |
Modifier and Type | Method and Description |
---|---|
void |
SimpleJob.addStep(Step step)
Convenience method for adding a single step to the job.
|
StepExecution |
StepHandler.handleStep(Step step,
JobExecution jobExecution)
Handle a step and return the execution for it.
|
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 . |
StepExecution |
SimpleStepHandler.handleStep(Step step,
JobExecution execution) |
Modifier and Type | Method and Description |
---|---|
void |
SimpleJob.setSteps(List<Step> steps)
Public setter for the steps in this job.
|
Modifier and Type | Class and Description |
---|---|
class |
FlowStep
A
XPath.Step implementation that delegates to a Flow . |
Modifier and Type | Method and Description |
---|---|
Step |
FlowJob.getStep(String stepName)
Retrieve the step with the given name.
|
Modifier and Type | Method and Description |
---|---|
String |
FlowExecutor.executeStep(Step step) |
String |
JobFlowExecutor.executeStep(Step step) |
Modifier and Type | Method and Description |
---|---|
Step |
StepState.getStep() |
Constructor and Description |
---|
StepState(Step step) |
StepState(String name,
Step step) |
Modifier and Type | Class and Description |
---|---|
class |
PartitionStep
Implementation of
Step which partitions the execution and spreads the
load using a PartitionHandler . |
Modifier and Type | Method and Description |
---|---|
Step |
TaskExecutorPartitionHandler.getStep()
The step instance that will be executed in parallel by this handler.
|
Modifier and Type | Method and Description |
---|---|
void |
TaskExecutorPartitionHandler.setStep(Step step)
Setter for the
Step that will be used to execute the partitioned
StepExecution . |
Constructor and Description |
---|
SimpleStepExecutionSplitter(JobRepository jobRepository,
Step step,
Partitioner partitioner)
|
Modifier and Type | Method and Description |
---|---|
void |
StepScopeManager.execute(Step step,
StepExecution stepExecution) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractStep
A
Step implementation that provides common behavior to subclasses,
including registering and calling listeners. |
Modifier and Type | Method and Description |
---|---|
Step |
StepHolder.getStep() |
Step |
StepLocator.getStep(String stepName) |
Modifier and Type | Class and Description |
---|---|
class |
JobStep
|
Modifier and Type | Class and Description |
---|---|
class |
TaskletStep
Simple implementation of executing the step as a call to a
Tasklet ,
possibly repeated, and each call surrounded by a transaction. |
Modifier and Type | Method and Description |
---|---|
JobExecution |
StepRunner.launchStep(Step step)
Launch just the specified step as its own job.
|
JobExecution |
StepRunner.launchStep(Step step,
ExecutionContext jobExecutionContext)
Launch just the specified step as its own job.
|
JobExecution |
StepRunner.launchStep(Step step,
JobParameters jobParameters)
Launch just the specified step as its own job.
|
JobExecution |
StepRunner.launchStep(Step step,
JobParameters jobParameters,
ExecutionContext jobExecutionContext)
Launch just the specified step as its own job.
|
Copyright © 2013 SpringSource. All rights reserved.