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.

@FunctionalInterface public static interface ServiceDiscovererUtils.TwoIntsConsumer
Represents an operation that accepts two int-valued arguments and returns no result.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(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 first int}-valued argument
      second - the second int}-valued argument