Markus Ahlstrand
Markus Ahlstrand

Reputation: 91

ServiceBusTrigger batch in Azure WebJob Sdk beta 0.5

Is there a way to retrieve batches of messages from a subscription using the new Azure WebJob Sdk beta 0.5. We're handling quite a few messages per second and would ideally like the following syntax

public static void ProcessMessages([ServiceBusTrigger("Topic", "Subscription")] IEnumerable brokeredMessages)

Is there a way to accomplish this?

Upvotes: 1

Views: 682

Answers (1)

Victor Hurdugaci
Victor Hurdugaci

Reputation: 28425

Unfortunately, that is not possible today.

What is the scenario in which you want to use that binding?

Upvotes: -1

Related Questions