Package lumis.util

Interface CollectionExecutor.IIterationCommand<T>

  • Type Parameters:
    T - the type of the collection elements.
    Enclosing class:
    CollectionExecutor<T>

    public static interface CollectionExecutor.IIterationCommand<T>
    Interface that is implemented to provide the command for executing a block of a collection.
    Since:
    4.2.2.090330
    Version:
    $Revision: 23745 $ $Date: 2020-04-07 20:09:15 -0300 (Tue, 07 Apr 2020) $
    See Also:
    CollectionExecutor
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void execute​(List<T> subItems)
      Method call to execute a list of items, that is a sub-list of the original collection to be processed.
    • Method Detail

      • execute

        void execute​(List<T> subItems)
              throws PortalException
        Method call to execute a list of items, that is a sub-list of the original collection to be processed.
        Parameters:
        subItems - the sub-list of the original collection.
        Throws:
        PortalException
        Since:
        4.2.2.090330
        See Also:
        CollectionExecutor