Interface DataStoreStatus
- 
- All Superinterfaces:
- java.io.Serializable
 
 public interface DataStoreStatus extends java.io.Serializable
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description booleancanQuarantine()Returns whether this store will quarantine data.intgetDroppedDataCount()Count of data that could not be stored due to various reasons, and was lost.StatMetricgetForwardMetric()intgetMaxRecords()The maximum number of values that can be pending.intgetPendingDataCount()intgetQuarantinedDataCount()StatMetricgetStorageMetric()StatMetricgetTakeMetric()
 
- 
- 
- 
Method Detail- 
getStorageMetricStatMetric getStorageMetric() 
 - 
getForwardMetricStatMetric getForwardMetric() 
 - 
getTakeMetricStatMetric getTakeMetric() 
 - 
getPendingDataCountint getPendingDataCount() 
 - 
getMaxRecordsint getMaxRecords() The maximum number of values that can be pending.
 - 
getDroppedDataCountint getDroppedDataCount() Count of data that could not be stored due to various reasons, and was lost.
 - 
canQuarantineboolean canQuarantine() Returns whether this store will quarantine data. If not, getQuarantinedDataCount won't be useful.
 - 
getQuarantinedDataCountint getQuarantinedDataCount() 
 
- 
 
-