kinesis-consumer/interfaces/checkpoint.go

9 lines
210 B
Go
Raw Normal View History

package interfaces
type Checkpoint interface {
CheckpointExists(streamName string, shardID string) bool
SequenceNumber() string
SetCheckpoint(streamName string, shardID string, sequenceNumber string)
}