How do you get the message count for Azure Topic Subscription?

前端 未结 2 611
旧巷少年郎
旧巷少年郎 2020-12-31 10:43

Is there a way to get the current message count for an Azure topic subscription?

I see that the SubscriptionDescription class has a MessageCount property, but this

2条回答
  •  渐次进展
    2020-12-31 11:03

    I found what I was looking for:

    var namespaceManager = NamespaceManager.CreateFromConnectionString(connectionString);
    var subscriptionDesc = namespaceManager.GetSubscription(topicPath, subscriptionName);
    long messageCount = subscriptionDesc.MessageCount;
    

提交回复
热议问题