Package org.springframework.retry.stats
Interface MutableRetryStatistics
- All Superinterfaces:
org.springframework.core.AttributeAccessor
,RetryStatistics
- All Known Implementing Classes:
DefaultRetryStatistics
,ExponentialAverageRetryStatistics
public interface MutableRetryStatistics
extends RetryStatistics, org.springframework.core.AttributeAccessor
- Author:
- Dave Syer
-
Method Summary
Modifier and TypeMethodDescriptionvoid
void
void
void
void
Methods inherited from interface org.springframework.core.AttributeAccessor
attributeNames, computeAttribute, getAttribute, hasAttribute, removeAttribute, setAttribute
Methods inherited from interface org.springframework.retry.RetryStatistics
getAbortCount, getCompleteCount, getErrorCount, getName, getRecoveryCount, getStartedCount
-
Method Details
-
incrementStartedCount
void incrementStartedCount() -
incrementCompleteCount
void incrementCompleteCount() -
incrementRecoveryCount
void incrementRecoveryCount() -
incrementErrorCount
void incrementErrorCount() -
incrementAbortCount
void incrementAbortCount()
-