Interface Consumer
- All Superinterfaces:
- Serializable
Represents an operation that accepts a single input argument and returns no result. This is similar to the Consumer interface in Java 8.
- 
Method SummaryModifier and TypeMethodDescriptionvoidaccept(TridentTuple input) Performs the operation on the input trident tuple.
- 
Method Details- 
acceptPerforms the operation on the input trident tuple.- Parameters:
- input- the input trident tuple
 
 
-