Interface SplitExecuteProcess<D,​T>

  • Type Parameters:
    D - the type of list of discriminant data.
    T - the type of the entity into result.
    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 SplitExecuteProcess<D,​T>
    Split Processor on discriminant data.
    • Method Detail

      • execute

        void execute​(Collection<D> idBatch,
                     Map<D,​List<T>> result)
              throws SQLException
        Processes on a slice of entire list of discriminant data.
        Parameters:
        idBatch - a slice of discriminant data.
        result - the result which has to be filled.
        Throws:
        SQLException - on SQL errors.