Uses of Interface
org.springframework.batch.repeat.CompletionPolicy
Packages that use CompletionPolicy
Package
Description
Parsers for XML based configuration
Step level builders for java based job configuration.
Factories for step level components.
Components for remote chunking.
Remote partitioning components.
Infrastructure implementations of repeat policy concerns.
Infrastructure implementations of repeat support concerns.
-
Uses of CompletionPolicy in org.springframework.batch.core.configuration.xml
Methods in org.springframework.batch.core.configuration.xml that return CompletionPolicyModifier and TypeMethodDescriptionprotected CompletionPolicy
StepParserStepFactoryBean.getCompletionPolicy()
Methods in org.springframework.batch.core.configuration.xml with parameters of type CompletionPolicyModifier and TypeMethodDescriptionvoid
StepParserStepFactoryBean.setChunkCompletionPolicy
(CompletionPolicy chunkCompletionPolicy) Public setter for theCompletionPolicy
that applies to the chunk level. -
Uses of CompletionPolicy in org.springframework.batch.core.resource
Classes in org.springframework.batch.core.resource that implement CompletionPolicyModifier and TypeClassDescriptionclass
ACompletionPolicy
that picks up a commit interval fromJobParameters
by listening to the start of a step. -
Uses of CompletionPolicy in org.springframework.batch.core.step.builder
Methods in org.springframework.batch.core.step.builder that return CompletionPolicyModifier and TypeMethodDescriptionprotected CompletionPolicy
SimpleStepBuilder.getChunkCompletionPolicy()
Methods in org.springframework.batch.core.step.builder with parameters of type CompletionPolicyModifier and TypeMethodDescriptionSimpleStepBuilder.chunk
(CompletionPolicy completionPolicy) Sets a completion policy for the chunk processing.<I,
O> SimpleStepBuilder<I, O> StepBuilder.chunk
(CompletionPolicy completionPolicy) Deprecated, for removal: This API element is subject to removal in a future version.<I,
O> SimpleStepBuilder<I, O> StepBuilder.chunk
(CompletionPolicy completionPolicy, org.springframework.transaction.PlatformTransactionManager transactionManager) Build a step that processes items in chunks with the completion policy provided. -
Uses of CompletionPolicy in org.springframework.batch.core.step.factory
Methods in org.springframework.batch.core.step.factory with parameters of type CompletionPolicyModifier and TypeMethodDescriptionvoid
SimpleStepFactoryBean.setChunkCompletionPolicy
(CompletionPolicy chunkCompletionPolicy) Public setter for theCompletionPolicy
applying to the chunk level. -
Uses of CompletionPolicy in org.springframework.batch.integration.chunk
Methods in org.springframework.batch.integration.chunk with parameters of type CompletionPolicyModifier and TypeMethodDescriptionRemoteChunkingManagerStepBuilder.chunk
(CompletionPolicy completionPolicy) -
Uses of CompletionPolicy in org.springframework.batch.integration.partition
Methods in org.springframework.batch.integration.partition with parameters of type CompletionPolicyModifier and TypeMethodDescription<I,
O> SimpleStepBuilder<I, O> RemotePartitioningWorkerStepBuilder.chunk
(CompletionPolicy completionPolicy) Deprecated, for removal: This API element is subject to removal in a future version.<I,
O> SimpleStepBuilder<I, O> RemotePartitioningWorkerStepBuilder.chunk
(CompletionPolicy completionPolicy, org.springframework.transaction.PlatformTransactionManager transactionManager) -
Uses of CompletionPolicy in org.springframework.batch.repeat.policy
Classes in org.springframework.batch.repeat.policy that implement CompletionPolicyModifier and TypeClassDescriptionclass
Very simple base class forCompletionPolicy
implementations.class
Composite policy that loops through a list of delegate policies and answers calls by a consensus.class
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
Very simpleCompletionPolicy
that bases its decision on the result of a batch operation.class
Policy for terminating a batch after a fixed number of operations.class
Termination policy that times out after a fixed period.Methods in org.springframework.batch.repeat.policy with parameters of type CompletionPolicyModifier and TypeMethodDescriptionvoid
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 CompletionPolicyModifier and TypeMethodDescriptionvoid
RepeatTemplate.setCompletionPolicy
(CompletionPolicy terminationPolicy) Setter for policy to decide when the batch is complete.
StepBuilder.chunk(CompletionPolicy, PlatformTransactionManager)