AZ-204 Quiz

Functions

Question:

In a microservice architecture, you have an Azure function that needs to send messages to multiple subscribers. The subscribers then process these messages in their own time. How would you design this system? Fill in the triggers and bindings in the following code:

[FunctionName("BroadcastMessage")]
public static void Run(
    /* Triggers and Bindings here */

    ILogger log)
{
    // Process the incoming message, if necessary
    // Prepare the output message
    // The output message is automatically sent for the subscribers to read later
}


Report a problem
Exam revision: April 11, 2025