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

10 lines
176 B
Go

package batchconsumer
type batcherSync struct {
tag string
writer *batchedWriter
}
func (b *batcherSync) SendBatch(batch [][]byte) {
b.writer.SendBatch(batch, b.tag)
}