Quick fix the build after broken by previous commit on this issue, no
actual stats tracking implemented in LevelDB by this commit.
This commit is contained in:
Timothy Bish 2016-07-26 16:56:02 -04:00
parent cf3d419528
commit 37da75e0e4
1 changed files with 11 additions and 5 deletions

View File

@ -901,6 +901,12 @@ class LevelDBStore extends LockableServiceSupport with BrokerServiceAware with P
super.asyncAddQueueMessage(context, message, false)
}
var stats = new MessageStoreSubscriptionStatistics(false)
def getMessageStoreSubStatistics: MessageStoreSubscriptionStatistics = {
stats;
}
def subscription_count = subscriptions.synchronized {
subscriptions.size
}