Triggers for Queues



  • A simple example defining a Function that gets triggered by a Queue message:
public static void StringMessage([QueueTrigger("my_queue")] string plainText)
{
    //...
}   
click below button to copy the code. By azure tutorial team
  • It also supports POCO serialization:
public static void POCOMessage([QueueTrigger("my_queue")] MyPOCOClass aMessage)
{
    //...
}
click below button to copy the code. By azure tutorial team

Related Searches to Triggers for Queues