Uses of Package
org.springframework.batch.core.step.tasklet

Packages that use org.springframework.batch.core.step.tasklet
org.springframework.batch.core.step.tasklet Interfaces and generic implementations of tasklet concerns. 
 

Classes in org.springframework.batch.core.step.tasklet used by org.springframework.batch.core.step.tasklet
Tasklet
          Interface for encapsulating processing logic that is not natural to split into read-(transform)-write phases, such as invoking a system command or a stored procedure.
Since the batch framework has no visibility inside the Tasklet.execute() method, developers should consider implementing StepExecutionListener and check the StepExecution.isTerminateOnly() value for long lasting processes to enable prompt termination of processing on user request.
It is expected the read-(transform)-write separation will be appropriate for most cases and developers should implement ItemReader and ItemWriter interfaces then (typically extending or composing provided implementations).
 



Copyright © 2009 SpringSource. All Rights Reserved.