public interface Filter extends EachOperation
If the `isKeep()` method of a Filter returns `false` for a tuple, that tuple will be filtered out of the Stream
### Configuration If your `Filter` implementation has configuration requirements, you will typically want to extend BaseFilter and override the Operation.prepare(Map,
TridentOperationContext) method to perform your custom initialization.
Stream| Modifier and Type | Method and Description |
|---|---|
boolean |
isKeep(TridentTuple tuple)
Determines if a tuple should be filtered out of a stream.
|
boolean isKeep(TridentTuple tuple)
tuple - the tuple being evaluatedCopyright © 2023 The Apache Software Foundation. All rights reserved.