public static void ProcessMessage([QueueTrigger("queue")] string message, TextWriter log)
{
//processing message
}
How exactly this method will be triggered.
Is WebJob host just poling the Storage Queue. Or Storage Queue raising new message event, that host subscribed to?