Interface MergingProcess


  • public interface MergingProcess
    Represents the information related to merge process execution.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void cancel()
      Cancels a merge process.
      java.time.Duration getDuration()
      Gets the merge process duration.
      com.orchestranetworks.addon.mame.common.process.ProcessStatus getStatus()
      Gets the available merge process status.
    • Method Detail

      • getStatus

        com.orchestranetworks.addon.mame.common.process.ProcessStatus getStatus()
        Gets the available merge process status.
        Returns:
        ProcessStatus The merge process execution status. The merge process fails if any group encounters an error when merging records.
      • getDuration

        java.time.Duration getDuration()
        Gets the merge process duration.
        Returns:
        Duration The duration of the merge process.
      • cancel

        void cancel()
        Cancels a merge process.

        It can take time for the process to be cancelled completely. Any progress made by the groups that have been processed up until the cancellation will be rolled back.