Interface VoidFunction

  • 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 VoidFunction
    The Java Function interface should return a value. However if you need only to invoke a handler without a result you need a functional interface such as VoidFunction.
    Since:
    2 nov. 2017
    • Method Detail

      • process

        void process()