Class KinesisDefaultResumeAdapter
- java.lang.Object
-
- org.apache.camel.component.aws2.kinesis.consumer.KinesisDefaultResumeAdapter
-
- All Implemented Interfaces:
KinesisResumeAdapter,org.apache.camel.resume.Cacheable,org.apache.camel.resume.Deserializable,org.apache.camel.resume.ResumeAdapter
@JdkService("adapter-factory") public class KinesisDefaultResumeAdapter extends Object implements KinesisResumeAdapter, org.apache.camel.resume.Cacheable, org.apache.camel.resume.Deserializable
-
-
Constructor Summary
Constructors Constructor Description KinesisDefaultResumeAdapter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(org.apache.camel.resume.OffsetKey<?> key, org.apache.camel.resume.Offset<?> offset)booleandeserialize(ByteBuffer keyBuffer, ByteBuffer valueBuffer)org.apache.camel.resume.cache.ResumeCache<?>getCache()voidresume()voidsetCache(org.apache.camel.resume.cache.ResumeCache<?> cache)voidsetRequestBuilder(software.amazon.awssdk.services.kinesis.model.GetShardIteratorRequest.Builder resumable)Sets the shard iterator request builder that can be used to customize the call and set the exact resume pointvoidsetStreamName(String streamName)Sets the stream name being worked on
-
-
-
Method Detail
-
setRequestBuilder
public void setRequestBuilder(software.amazon.awssdk.services.kinesis.model.GetShardIteratorRequest.Builder resumable)
Description copied from interface:KinesisResumeAdapterSets the shard iterator request builder that can be used to customize the call and set the exact resume point- Specified by:
setRequestBuilderin interfaceKinesisResumeAdapter- Parameters:
resumable- the builder instance
-
resume
public void resume()
- Specified by:
resumein interfaceorg.apache.camel.resume.ResumeAdapter
-
add
public boolean add(org.apache.camel.resume.OffsetKey<?> key, org.apache.camel.resume.Offset<?> offset)- Specified by:
addin interfaceorg.apache.camel.resume.Cacheable
-
setCache
public void setCache(org.apache.camel.resume.cache.ResumeCache<?> cache)
- Specified by:
setCachein interfaceorg.apache.camel.resume.Cacheable
-
getCache
public org.apache.camel.resume.cache.ResumeCache<?> getCache()
- Specified by:
getCachein interfaceorg.apache.camel.resume.Cacheable
-
deserialize
public boolean deserialize(ByteBuffer keyBuffer, ByteBuffer valueBuffer)
- Specified by:
deserializein interfaceorg.apache.camel.resume.Deserializable
-
setStreamName
public void setStreamName(String streamName)
Description copied from interface:KinesisResumeAdapterSets the stream name being worked on- Specified by:
setStreamNamein interfaceKinesisResumeAdapter- Parameters:
streamName- the stream name
-
-