Interface FragileProcedure<Argument,​Error extends java.lang.Exception>

  • All Known Subinterfaces:
    Procedure<T>
    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 FragileProcedure<Argument,​Error extends java.lang.Exception>
    Functional interface for a void function taking one argument that can throw a checked Exception.
    See Also:
    FragileProcedure, Procedure
    • Method Detail

      • process

        void process​(Argument arg)
              throws Error extends java.lang.Exception
        Executes the procedure with the given argument.
        Throws:
        Error extends java.lang.Exception