* Update comments and return statements * Adjust usage of Kinesis library (upgraded local source)
9 lines
258 B
Go
9 lines
258 B
Go
package connector
|
|
|
|
// AllPassFilter an implementation of the Filter interface that returns true for all records.
|
|
type AllPassFilter struct{}
|
|
|
|
// KeepRecord returns true for all records.
|
|
func (b *AllPassFilter) KeepRecord(r interface{}) bool {
|
|
return true
|
|
}
|