2014-07-25 06:03:41 +00:00
|
|
|
package connector
|
|
|
|
|
|
2014-12-10 23:38:19 +00:00
|
|
|
// AllPassFilter an implementation of the Filter interface that returns true for all records.
|
2014-07-25 06:03:41 +00:00
|
|
|
type AllPassFilter struct{}
|
|
|
|
|
|
2014-12-10 23:38:19 +00:00
|
|
|
// KeepRecord returns true for all records.
|
2014-11-16 01:00:37 +00:00
|
|
|
func (b *AllPassFilter) KeepRecord(r interface{}) bool {
|
2014-07-25 06:03:41 +00:00
|
|
|
return true
|
|
|
|
|
}
|