* Update comments and return statements * Adjust usage of Kinesis library (upgraded local source)
7 lines
212 B
Go
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
|
|
}
|