Interface Procedure<T>

  • All Superinterfaces:
    FragileProcedure<T,​java.lang.RuntimeException>
    All Known Implementing Classes:
    Batch, Composite, Conditional, DelegatingProcedure, ForEach
    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 Procedure<T>
    extends FragileProcedure<T,​java.lang.RuntimeException>
    Functional interface for a void function taking one argument.
    • Method Detail

      • process

        void process​(T arg)
        Executes the procedure with the given argument.
        Specified by:
        process in interface FragileProcedure<T,​java.lang.RuntimeException>