Created
May 3, 2016 14:08
-
-
Save ry8806/1bd7b93179927253238fc687a91da48f to your computer and use it in GitHub Desktop.
This file contains 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
using System.IO; | |
using Microsoft.Azure.WebJobs; | |
namespace WebJob1 | |
{ | |
public class Functions | |
{ | |
// This function will get triggered/executed when a new message is written | |
// on an Azure Queue called queue. | |
public static void ProcessQueueMessage([QueueTrigger("queue")] string message, TextWriter log) | |
{ | |
log.WriteLine(message); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment