Interface ChangesCollector

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean collect​(ItemChangeDTO change)
      Collects the given change in a specified way.
      void finish()
      Finishes the collecting changes, depending on implementation, may be used as kind of post processing after finalizing collecting the changes.
    • Method Detail

      • collect

        boolean collect​(ItemChangeDTO change)
        Collects the given change in a specified way.
        Parameters:
        change - change to be collected
        Returns:
        true, if the collecting process should continue, false otherwise
      • finish

        void finish()
        Finishes the collecting changes, depending on implementation, may be used as kind of post processing after finalizing collecting the changes. E.g. a csv report can be generated here.