Interface IReplicationInOperation
- All Known Subinterfaces:
IReplicationInOperations<T>,MirrorOperations,MirrorOperationStatistics,MirrorStatistics
- All Known Implementing Classes:
AbstractMirrorOperations,MirrorOperationsImpl,MirrorOperationStatisticsImpl,MirrorStatisticsImpl
public interface IReplicationInOperation
Represents specific incoming operation statistics.
In a cluster that is active the numbers should be used as an estimation only, since statistics
gathering is concurrent. In a cluster that doesn't have any activity the numbers are accurate.
The statistics should comply to the following formula :
operationCount = successfulCount + failedCount + discardedCount + inProgressCount.
- Since:
- 8.0
- Author:
- anna
-
Method Summary
Modifier and TypeMethodDescriptionlongReturns the count of operations that were discarded by the target.longReturns the count of operations that failed on targetlongReturns the count of operations that are currently in progress on the targetlongReturns the total count of operations that were executed on targetlongReturns the count of operations that were successfully executed on target
-
Method Details
-
getOperationCount
long getOperationCount()Returns the total count of operations that were executed on target -
getSuccessfulOperationCount
long getSuccessfulOperationCount()Returns the count of operations that were successfully executed on target -
getFailedOperationCount
long getFailedOperationCount()Returns the count of operations that failed on target -
getDiscardedOperationCount
long getDiscardedOperationCount()Returns the count of operations that were discarded by the target. -
getInProgressOperationCount
long getInProgressOperationCount()Returns the count of operations that are currently in progress on the target
-