简体   繁体   English

如何从 ServiceBusQueueTrigger Azure function 向 Durable Function 发送消息

[英]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'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扇入/输出逻辑。 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?我不知道如何从服务总线队列触发器 Azure function 发送消息,或者是否有任何其他方式可以将消息从服务总线队列发送到持久 Z86408593C34AF77FDD1Z0DF932F8B526?

All you need to do is utilize the DurableClient binding on your Function that has the Service Bus trigger.您需要做的就是利用具有服务总线触发器的 Function 上的DurableClient绑定。 Check out the documentation for Durable Client functions here . 在此处查看 Durable Client 功能的文档。 There are also various samples that use it.还有各种使用它的样本。 Most of them are HTTP triggered, but the same principle applies with Service Bus triggers.它们中的大多数是 HTTP 触发的,但同样的原理也适用于服务总线触发器。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Azure Function v2 在 NodeJS (index.js) 中使用 ServiceBusQueueTrigger - 如果出现异常,如何将消息发送到死信队列 - Azure Function v2 with ServiceBusQueueTrigger in NodeJS (index.js) - How to send message to Deadletter Queue if there is exception 如何使用python从Azure函数将消息发送到Azure中的队列? - How to do I send a message to a queue in Azure from an Azure function using python? 如何将列表发送到 Azure Durable Functions - How do I send a list to Azure Durable Functions 如何从 Azure function 应用程序发送 email? - How do I send email from an Azure function app? 如何在 ServiceBusTrigger azure function 中进行持久的后调用? - How to do a durable post call in an ServiceBusTrigger azure function? Azure 耐用 Function - 在 Orchestrator 中执行 - Azure Durable Function - Do While in Orchestrator 如何在耐用的Azure函数中创建SQL连接? - How can i create SQL Connection in Durable Azure Function? 如何将二进制消息从 Azure 函数发送到 Azure 服务总线 - How to send a binary message from Azure Function to Azure Service Bus 如何将耐用型 azure function 从 .NET 3.1 升级到 Z303CB0EF9EDB90872D61BBBE5825D6。 - How to upgrade durable azure function from .NET 3.1 to .NET 6.0 如何“监听”天蓝色持久函数的状态变化? - How can I 'listen' for status changes on an azure durable function?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM