In Azure worker roles, you can create a batch job that processes a list of messages. I'm wondering if there is something similar to that for Azure WebJobs?
Currently you can trigger a webjob from a queue as follows:
public static void ProcessQueueMessage([QueueTrigger("queue")] string message, TextWriter log)
Is there some way to pull and process a list of messages?