0

I have gone through the best practices for Service Bus mentioned in https://learn.microsoft.com/en-us/azure/service-bus-messaging/service-bus-performance-improvements

Looks like it discusses about the old Service Bus library. I am using Microsoft.Azure.ServiceBus.TopicClient and have couple of queries:

  1. Is it thread safe?
  2. How do I enable client-side batching for this?
Amlan
  • 241
  • 6
  • 13

1 Answers1

1

Is it thread safe?

Yes.

How do I enable client-side batching for this?

You don't. That setting was specific to SBMP protocol. The new client is using AMQP only.

Sean Feldman
  • 23,443
  • 7
  • 55
  • 80