Azure / azure-functions-dotnet-worker-preview

MIT License
65 stars 19 forks source link

Is it possible to generate several output bindings, so they can be processed independently? #50

Closed josere closed 3 years ago

josere commented 3 years ago

[Queue("functionstesting2", Connection = "AzureWebJobsStorage")] OutputBinding<Book> book will let you add one book to the queue. What if I want to add many books, so they can trigger separate events, and can be processed independently?

Regards, Jose.

anthonychu commented 3 years ago

You should be able to use OutputBinding<IEnumerable<Book>> but this is not working in preview3. Tracking this here: https://github.com/Azure/azure-functions-dotnet-worker/issues/124