Interface Action

  • 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 Action
    Represents a procedure that do some stuff and returns nothing.
    Since:
    1.0
    • Method Detail

      • execute

        void execute()