Uses of Interface
org.springframework.batch.repeat.CompletionPolicy

Packages that use CompletionPolicy
org.springframework.batch.core.resource   
org.springframework.batch.core.step.item Specific implementations of step concerns for item-oriented approach. 
org.springframework.batch.repeat.policy Infrastructure implementations of repeat policy concerns. 
org.springframework.batch.repeat.support Infrastructure implementations of repeat support concerns. 
 

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

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

Uses of CompletionPolicy in org.springframework.batch.core.step.item
 

Methods in org.springframework.batch.core.step.item with parameters of type CompletionPolicy
 void SimpleStepFactoryBean.setChunkCompletionPolicy(CompletionPolicy chunkCompletionPolicy)
          Public setter for the CompletionPolicy applying to the chunk level.
 

Uses of CompletionPolicy in org.springframework.batch.repeat.policy
 

Classes in org.springframework.batch.repeat.policy that implement CompletionPolicy
 class CompletionPolicySupport
          Very simple base class for CompletionPolicy implementations.
 class CompositeCompletionPolicy
          Composite policy that loops through a list of delegate policies and answers calls by a concensus.
 class CountingCompletionPolicy
          Abstract base class for policies that need to count the number of occurrences of some event (e.g. an exception type in the context), and terminate based on a limit for the counter.
 class DefaultResultCompletionPolicy
          Very simple CompletionPolicy that bases its decision on the result of a batch operation.
 class SimpleCompletionPolicy
          Policy for terminating a batch after a fixed number of operations.
 class TimeoutTerminationPolicy
          Termination policy that times out after a fixed period.
 

Methods in org.springframework.batch.repeat.policy with parameters of type CompletionPolicy
 void CompositeCompletionPolicy.setPolicies(CompletionPolicy[] policies)
          Setter for the policies.
 

Uses of CompletionPolicy in org.springframework.batch.repeat.support
 

Methods in org.springframework.batch.repeat.support with parameters of type CompletionPolicy
 void RepeatTemplate.setCompletionPolicy(CompletionPolicy terminationPolicy)
          Setter for policy to decide when the batch is complete.
 



Copyright © 2009 SpringSource. All Rights Reserved.