Uses of Interface
org.springframework.batch.core.StepExecutionListener

Packages that use StepExecutionListener
org.springframework.batch.core.listener Generic implementations of core batch listener interfaces. 
org.springframework.batch.core.resource   
org.springframework.batch.core.step Specific implementations of step concerns. 
org.springframework.batch.core.step.tasklet Interfaces and generic implementations of tasklet concerns. 
org.springframework.batch.sample.common   
org.springframework.batch.sample.domain.trade   
org.springframework.batch.sample.loopFlow   
org.springframework.batch.sample.support   
 

Uses of StepExecutionListener in org.springframework.batch.core.listener
 

Classes in org.springframework.batch.core.listener that implement StepExecutionListener
 class CompositeStepExecutionListener
           
 class ExecutionContextPromotionListener
          This class can be used to automatically promote items from the Step ExecutionContext to the Job ExecutionContext at the end of a step.
 class JobParameterExecutionContextCopyListener
          This class can be used to automatically copy items from the JobParameters to the Step ExecutionContext.
 class MulticasterBatchListener<T,S>
           
 class StepExecutionListenerSupport
           
 class StepListenerSupport<T,S>
          Basic no-op implementations of all StepListener implementations.
 

Methods in org.springframework.batch.core.listener with parameters of type StepExecutionListener
 void CompositeStepExecutionListener.register(StepExecutionListener stepExecutionListener)
          Register additional listener.
 void CompositeStepExecutionListener.setListeners(StepExecutionListener[] listeners)
          Public setter for the listeners.
 

Uses of StepExecutionListener in org.springframework.batch.core.resource
 

Classes in org.springframework.batch.core.resource that implement StepExecutionListener
 class StepExecutionSimpleCompletionPolicy
          A CompletionPolicy that picks up a commit interval from JobParameters by listening to the start of a step.
 

Uses of StepExecutionListener in org.springframework.batch.core.step
 

Classes in org.springframework.batch.core.step that implement StepExecutionListener
 class NoWorkFoundStepExecutionListener
          Fails the step if no items have been processed ( item count is 0).
 

Methods in org.springframework.batch.core.step that return StepExecutionListener
protected  StepExecutionListener AbstractStep.getCompositeListener()
           
 

Methods in org.springframework.batch.core.step with parameters of type StepExecutionListener
 void AbstractStep.registerStepExecutionListener(StepExecutionListener listener)
          Register a step listener for callbacks at the appropriate stages in a step execution.
 void AbstractStep.setStepExecutionListeners(StepExecutionListener[] listeners)
          Register each of the objects as listeners.
 

Uses of StepExecutionListener in org.springframework.batch.core.step.tasklet
 

Classes in org.springframework.batch.core.step.tasklet that implement StepExecutionListener
 class SystemCommandTasklet
          Tasklet that executes a system command.
 

Uses of StepExecutionListener in org.springframework.batch.sample.common
 

Classes in org.springframework.batch.sample.common that implement StepExecutionListener
 class InfiniteLoopWriter
          Simple module implementation that will always return true to indicate that processing should continue.
 class StagingItemListener
          Thread-safe database ItemReader implementing the process indicator pattern.
 class StagingItemReader<T>
          Thread-safe database ItemReader implementing the process indicator pattern.
 class StagingItemWriter<T>
          Database ItemWriter implementing the process indicator pattern.
 

Uses of StepExecutionListener in org.springframework.batch.sample.domain.trade
 

Classes in org.springframework.batch.sample.domain.trade that implement StepExecutionListener
 class CompositeCustomerUpdateLineTokenizer
          Composite LineTokenizer that delegates the tokenization of a line to one of two potential tokenizers.
 

Uses of StepExecutionListener in org.springframework.batch.sample.loopFlow
 

Classes in org.springframework.batch.sample.loopFlow that implement StepExecutionListener
 class GeneratingTradeResettingListener
          This listener resets the count of its GeneratingTradeItemReader after the step.
 

Uses of StepExecutionListener in org.springframework.batch.sample.support
 

Classes in org.springframework.batch.sample.support that implement StepExecutionListener
 class SummaryFooterCallback
          Writes summary info in the footer of a file.
 



Copyright © 2009 SpringSource. All Rights Reserved.