1
votes

I have managed to write a small console application to connect to a topic/subscription in the Azure Service Bus. I have sent messages to the subscription and registered a message handler. I see the message handler polls every 60 seconds. Is there anyway to extend this polling interval to 30 or 60 minutes for example?

Regards, Simon

1
Did get a good understanding of this? Im looking for documentation on expected response times of client receiving a message once its ended the queue. - Chris Moutray

1 Answers

0
votes

I believe both Microsoft.Azure.ServiceBus (.NET Standard) and Microsoft.ServiceBus.Messaging (.NET Framework) use either AMQP or AMQP over WebSockets under the hood which don't have to poll for messages.

I guess you are checking the network logs and what you are seeing is probably a heartbeat to keep the underlying TCP connection alive.