简体   繁体   中英

How do I send message from ServiceBusQueueTrigger Azure function to Durable Function

I'm new in Azure Function, I have Service Bus Queue Trigger Azure function which is pulling data from Service Bus Queue whenever message gets pushed in Queue, I want to send the message to Durable Function from Service Bus Queue Trigger Azure function and then implement the Fan-In/Out logic. I have no idea how to send the message from Service Bus Queue Trigger Azure function or Is there any other way to Send message from Service Bus Queue to Durable Function?

All you need to do is utilize the DurableClient binding on your Function that has the Service Bus trigger. Check out the documentation for Durable Client functions here . There are also various samples that use it. Most of them are HTTP triggered, but the same principle applies with Service Bus triggers.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM