amazon-kinesis-client-go/batchconsumer/sync.go

12 lines
209 B
Go
Raw Normal View History

package batchconsumer
2017-07-18 19:19:40 +00:00
type batcherSync struct {
tag string
2017-07-18 19:19:40 +00:00
writer *batchedWriter
}
2017-07-18 19:19:40 +00:00
func (b *batcherSync) SendBatch(batch [][]byte) {
b.writer.SendBatch(batch, b.tag)
b.writer.CheckPointBatch(b.tag)
}