Interface LocalTopicMBean
-
- All Superinterfaces:
DestinationDescriptorMBean,LocalDestinationMBean
- All Known Implementing Classes:
LocalTopic
public interface LocalTopicMBean extends LocalDestinationMBean
Implementation for a local JMS
Topic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetDispatchedFromTopicCount()Get the number of messages dispatched from this topic (since startup or last reset)intgetIndexedSubscriptionsCount()Get the number of indexed subscriptions on this topiclonggetSentToTopicCount()Get the number of messages sent to this topic (since startup or last reset)intgetSubscriptionsCount()Get the number of active subscriptions on this topic-
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
-
getSentToTopicCount
long getSentToTopicCount()
Get the number of messages sent to this topic (since startup or last reset)
-
getDispatchedFromTopicCount
long getDispatchedFromTopicCount()
Get the number of messages dispatched from this topic (since startup or last reset)
-
getSubscriptionsCount
int getSubscriptionsCount()
Get the number of active subscriptions on this topic
-
getIndexedSubscriptionsCount
int getIndexedSubscriptionsCount()
Get the number of indexed subscriptions on this topic
-
-