Interface LocalQueueMBean
-
- All Superinterfaces:
DestinationDescriptorMBean,LocalDestinationMBean
- All Known Implementing Classes:
LocalQueue
public interface LocalQueueMBean extends LocalDestinationMBean
JMX interface for a local JMS
Queue
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetAcknowledgedGetCount()Get the number of acknowledged get operations on this queue (since startup or last reset)longgetExpiredCount()Get the number of messages that were removed from this queue because they expired (since startup or last reset)intgetMemoryStoreUsage()Get the usage amount (%) for the memory storeintgetPersistentStoreUsage()Get the usage amount (%) for the memory storelonggetReceivedFromQueueCount()Get the number of messages received from this queue (since startup or last reset)longgetRollbackedGetCount()Get the number of rollbacked get operations on this queue (since startup or last reset)longgetSentToQueueCount()Get the number of messages sent to this queue (since startup or last reset)longgetStoreFullEventsCount()Get the number of times a message could not be stored because the queue store was full-
Methods inherited from interface net.timewalker.ffmq4.management.destination.DestinationDescriptorMBean
getAutoExtendAmount, getBlockSize, getInitialBlockCount, getJournalOutputBuffer, getMaxBlockCount, getMaxJournalSize, getMaxNonPersistentMessages, getMaxUncommittedStoreSize, getMaxUnflushedJournalSize, getMaxWriteBatchSize, getName, getStorageSyncMethod, isPreAllocateFiles, isTemporary, isUseJournal
-
Methods inherited from interface net.timewalker.ffmq4.local.destination.LocalDestinationMBean
getAverageCommitTime, getMaxCommitTime, getMinCommitTime, getRegisteredConsumersCount, getSize, resetStats
-
-
-
-
Method Detail
-
getSentToQueueCount
long getSentToQueueCount()
Get the number of messages sent to this queue (since startup or last reset)
-
getReceivedFromQueueCount
long getReceivedFromQueueCount()
Get the number of messages received from this queue (since startup or last reset)
-
getAcknowledgedGetCount
long getAcknowledgedGetCount()
Get the number of acknowledged get operations on this queue (since startup or last reset)
-
getRollbackedGetCount
long getRollbackedGetCount()
Get the number of rollbacked get operations on this queue (since startup or last reset)
-
getExpiredCount
long getExpiredCount()
Get the number of messages that were removed from this queue because they expired (since startup or last reset)
-
getStoreFullEventsCount
long getStoreFullEventsCount()
Get the number of times a message could not be stored because the queue store was full
-
getMemoryStoreUsage
int getMemoryStoreUsage()
Get the usage amount (%) for the memory store
-
getPersistentStoreUsage
int getPersistentStoreUsage()
Get the usage amount (%) for the memory store
-
-