Interface BatchOperation<E extends Exception>

  • Type Parameters:
    E - the type of exception thrown by the operation
    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 BatchOperation<E extends Exception>
    Describes the work done in a batch operation, executed by a BatchOperationExecutor.
    Since:
    9.5RC1
    Version:
    $Id: cd7a8cb99e7a3eb8e27c7c6760f323e3c73ce8eb $
    • Method Detail

      • execute

        void execute()
              throws E extends Exception
        Do the work.
        Throws:
        E - in case of problems
        E extends Exception