Interface AFConsumer<T>

Type Parameters:
T - the type of things to be accepted
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 interface AFConsumer<T>
junixsocket-internal variant of java.util.Consumer, to allow compiling junixsocket-common with retrolambda for Java 1.7.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(T t)
    Accepts something.
  • Method Details

    • accept

      void accept(T t)
      Accepts something.
      Parameters:
      t - the thing.