Interface IProcessingProgress
-
- All Known Implementing Classes:
ProcessingProgress
public interface IProcessingProgressDefines the processing progress.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IProcessingStatisticgetProcesingStatistic()The processing statistic.longgetProcessedUnits()Gets the number of processed units.java.lang.StringgetProcessingStatusMessage()Returns the processing status messageProcessingStatusTypegetProcessingStatusType()The processing status type which covers the overall statuslonggetTotalFailedUnits()Gets the number of failed units.longgetTotalUnits()Gets the number of total processed unit.
-
-
-
Method Detail
-
getTotalUnits
long getTotalUnits()
Gets the number of total processed unit.- Returns:
- the total units.
-
getProcessedUnits
long getProcessedUnits()
Gets the number of processed units.- Returns:
- the number of processed units.
-
getTotalFailedUnits
long getTotalFailedUnits()
Gets the number of failed units.- Returns:
- the number of failed units.
-
getProcessingStatusType
ProcessingStatusType getProcessingStatusType()
The processing status type which covers the overall status- Returns:
- the processing status type.
-
getProcessingStatusMessage
java.lang.String getProcessingStatusMessage()
Returns the processing status message- Returns:
- the processing status message
-
getProcesingStatistic
IProcessingStatistic getProcesingStatistic()
The processing statistic.- Returns:
- the processing statistic.
-
-