Package io.servicetalk.concurrent.api
Interface LongBinaryConsumer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A special consumer that takes two
long
arguments.-
Method Summary
Modifier and TypeMethodDescriptionvoid
accept
(long first, long second) Evaluates this consumer on the given arguments.
-
Method Details
-
accept
void accept(long first, long second) Evaluates this consumer on the given arguments.- Parameters:
first
- The first argument.second
- The second argument.
-