Package org.apache.camel
Interface ResumeStrategy<T>
-
public interface ResumeStrategy<T>Defines a strategy for handling resume operations. Implementations can define different ways to handle how to resume processing records.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidresume(T resumable)A consumer, iterator or value class that can be used to set the index position from which to resume from.
-
-
-
Method Detail
-
resume
void resume(T resumable)
A consumer, iterator or value class that can be used to set the index position from which to resume from. The type is specific to the component.- Parameters:
resumable- A resumable object.
-
-