Interface ServiceDiscovererUtils.TwoIntsConsumer
- Enclosing class:
- ServiceDiscovererUtils
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents an operation that accepts two
int-valued arguments and returns no result.-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(int first, int second) Performs this operation on the given arguments.
-
Method Details
-
accept
void accept(int first, int second) Performs this operation on the given arguments.- Parameters:
first- the firstint}-valued argumentsecond- the secondint}-valued argument
-