Interface MergingProcess
public interface MergingProcess
Represents the information related to merge process execution.
- 
Method Summary
Modifier and TypeMethodDescriptionvoidcancel()Cancels a merge process.Gets the merge process duration.com.orchestranetworks.addon.mame.common.process.ProcessStatusGets the available merge process status. 
- 
Method Details
- 
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
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.
 
 -