ServiceBusOutput write to the queue immediately, not on return
I have multiple Azure service bus queues to write to. I must use output bindings. But this output binding cannot be returned to the function endpoints because of the way that the code is structured.
Service Bus Output in the Isolated Worker Model – .NET8 Function App
I have a function app that we are upgrading from the In-Process Model to the Isolated Worker Model.
Below I have a dumbed-down, pseudocode version of what I am working on with the relevant method signature and call.
Getting “System.IO.FileNotFoundException: Could not load file or assembly ‘Azure.Core, Version=1.38.0.0” in Azure Function App
Currently, I am running a .NET 8 Azure Function app in Azure. It’s a dotnet-isolated function running on a Linux App Service plan.
C# Azure Functions in Isolated Worker Model with Manual Trigger
It was once the case (in the previous in-process model of Azure Functions), that one could decorate a function that had no input bindings with a [NoAutomaticTrigger]
attribute, and then invoke the function either via through Azure Portal or the Function App’s HTTP management interface (not to be confused with a HTTP input binding).