Package org.onosproject.store.service
Interface StorageAdminService
-
public interface StorageAdminService
Service for administering storage instances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Map<String,Long>
getCounters()
Returns information about all the atomic counters in the system.List<MapInfo>
getMapInfo()
Deprecated.1.5.0 Falcon ReleaseCollection<TransactionId>
getPendingTransactions()
Returns all pending transactions.Map<String,WorkQueueStats>
getQueueStats()
Returns statistics for all the work queues in the system.
-
-
-
Method Detail
-
getMapInfo
@Deprecated List<MapInfo> getMapInfo()
Deprecated.1.5.0 Falcon ReleaseReturns information about all the consistent maps in the system.- Returns:
- list of map information
-
getCounters
Map<String,Long> getCounters()
Returns information about all the atomic counters in the system.- Returns:
- mapping from counter name to that counter's next value
-
getQueueStats
Map<String,WorkQueueStats> getQueueStats()
Returns statistics for all the work queues in the system.- Returns:
- mapping from queue name to that queue's stats
-
getPendingTransactions
Collection<TransactionId> getPendingTransactions()
Returns all pending transactions.- Returns:
- collection of pending transaction identifiers.
-
-