Azure WebJob concurrency when using ServiceBusTrigger

旧时模样 提交于 2019-12-05 08:57:29

Essentially yes, MaxConcurrentCalls defines the amount of threads used by the Client to process the queue.

When QueueClient.OnMessage method is called it starts a message pump on an infinte loop that is constantly polling. The OnMessageOptions.MaxConcurrentCall sets the number of concurrent calls to the callback the message pump should initiate.

More back story: Introducing the Event-Driven Message Programming Model for the Windows Azure Service Bus

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!