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 Summary
Modifier and TypeMethodDescriptionvoid
accept
(TridentTuple input) Performs the operation on the input trident tuple.
-
Method Details
-
accept
Performs the operation on the input trident tuple.- Parameters:
input
- the input trident tuple
-