Created
May 4, 2025 16:57
-
-
Save geiltonxavier/bd463fb0a06b852c5ff72ddea49be164 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[FunctionName("ProcessQueueMessage")] | |
public static async Task Run( | |
[ServiceBusTrigger("queue-name", Connection = "ServiceBusConnection")] string message, | |
ILogger log) | |
{ | |
log.LogInformation($"Received message: {message}"); | |
// Process message: call further activity functions, update records, etc. | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment