Package | Description |
---|---|
software.amazon.kinesis.checkpoint | |
software.amazon.kinesis.processor |
Modifier and Type | Class and Description |
---|---|
class |
DoesNothingPreparedCheckpointer
A special PreparedCheckpointer that does nothing, which can be used when preparing a checkpoint at the current
checkpoint sequence number where it is never necessary to do another checkpoint.
|
class |
ShardPreparedCheckpointer
Objects of this class are prepared to checkpoint at a specific sequence number.
|
Modifier and Type | Method and Description |
---|---|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint()
This method will record a pending checkpoint at the last data record that was delivered to the record processor.
|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint(byte[] applicationState)
This method will record a pending checkpoint at the last data record that was delivered to the record processor.
|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint(software.amazon.awssdk.services.kinesis.model.Record record)
This method will record a pending checkpoint at the at the provided record.
|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint(software.amazon.awssdk.services.kinesis.model.Record record,
byte[] applicationState)
This method will record a pending checkpoint at the at the provided record.
|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber)
This method will record a pending checkpoint at the provided sequenceNumber.
|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber,
byte[] applicationState)
This method will record a pending checkpoint at the provided sequenceNumber.
|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber,
long subSequenceNumber)
This method will record a pending checkpoint at the provided sequenceNumber and subSequenceNumber, the latter for
aggregated records produced with the Producer Library.
|
PreparedCheckpointer |
ShardRecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber,
long subSequenceNumber,
byte[] applicationState)
This method will record a pending checkpoint at the provided sequenceNumber and subSequenceNumber, the latter for
aggregated records produced with the Producer Library.
|
Modifier and Type | Method and Description |
---|---|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint()
This method will record a pending checkpoint at the last data record that was delivered to the record processor.
|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint(byte[] applicationState)
This method will record a pending checkpoint at the last data record that was delivered to the record processor.
|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint(software.amazon.awssdk.services.kinesis.model.Record record)
This method will record a pending checkpoint at the at the provided record.
|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint(software.amazon.awssdk.services.kinesis.model.Record record,
byte[] applicationState)
This method will record a pending checkpoint at the at the provided record.
|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber)
This method will record a pending checkpoint at the provided sequenceNumber.
|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber,
byte[] applicationState)
This method will record a pending checkpoint at the provided sequenceNumber.
|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber,
long subSequenceNumber)
This method will record a pending checkpoint at the provided sequenceNumber and subSequenceNumber, the latter for
aggregated records produced with the Producer Library.
|
PreparedCheckpointer |
RecordProcessorCheckpointer.prepareCheckpoint(String sequenceNumber,
long subSequenceNumber,
byte[] applicationState)
This method will record a pending checkpoint at the provided sequenceNumber and subSequenceNumber, the latter for
aggregated records produced with the Producer Library.
|
Copyright © 2022. All rights reserved.