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