kinesis-consumer/filter.go
Harlow Ward 8e8ee5af73 Use golint to update Golang styles
* Update comments and return statements
* Adjust usage of Kinesis library (upgraded local source)
2014-12-10 15:38:19 -08:00

7 lines
212 B
Go

package connector
// Filter is an interface used for determinint whether to buffer records.
// Returns false if you don't want to hold on to the record.
type Filter interface {
KeepRecord(r interface{}) bool
}