A harbor ferry /delay webhook Function must return HTTP 202 to the caller and also enqueue a notification message for staff. How should the developer structure outputs on that single function?
Select an answer to reveal the explanation.
Short Explanation
One function can talk back to the browser and drop a message on a queue in the same breath. Keep the HTTP response and bolt on an extra output binding for the notification.
Full Explanation
Azure Functions allow multiple output bindings on one function alongside an HTTP trigger’s response. Returning 202 while writing to Queue Storage or Event Hubs through an output binding meets both needs without redesigning the trigger. Dropping HTTP, forcing manual blob polling, or moving to AKS sidecars are unnecessary for this binding pattern.