Package org.apache.camel.support.resume
Class Resumables
- java.lang.Object
-
- org.apache.camel.support.resume.Resumables
-
public final class Resumables extends Object
A wrapper for resumable entities
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <K,V>
org.apache.camel.resume.Resumable<K,V>of(K addressable, V offset)Creates a new resumable for an addressable
-
-
-
Method Detail
-
of
public static <K,V> org.apache.camel.resume.Resumable<K,V> of(K addressable, V offset)Creates a new resumable for an addressable- Type Parameters:
K- the type of the key, name or object that can be addressed by the given offset (aka addressable)V- the type of offset- Parameters:
addressable- the key, name or object that can be addressed by the given offsetoffset- the offset value- Returns:
- A new resumable entity for the given addressable with the given offset value
-
-