You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there an option to use the Dapr Client SDK with Service Bus Queues via attributes [Dapr.Queue("pubsubname", "queuename")] similar to the topics [Dapr.Topic("pubsubname", "topicname")]?
If not is there any way to build .net client consumers using Daor for Service Bus Queues?
The text was updated successfully, but these errors were encountered:
@tjoudeh - What is the use case you're going for here? As a rule of thumb, Dapr tries to stay as generic as possible as that is one of the core principals of it, components should be exchangeable. As such, I would hesitate to make any component specific additions directly to the core SDK.
@tjoudeh It may have been implemented since you asked this question, but you can use the FromTopic subscription in the .NET client using either the Queue or Topic functionality with Azure Service Bus using the pub/sub building block. It's straightforward when using ASB topics, but here's the documented guidance for doing the same with Queues.
As Dapr Pub/sub API supports Azure Service Bus Queues
Is there an option to use the Dapr Client SDK with Service Bus Queues via attributes
[Dapr.Queue("pubsubname", "queuename")]
similar to the topics[Dapr.Topic("pubsubname", "topicname")]
?If not is there any way to build .net client consumers using Daor for Service Bus Queues?
The text was updated successfully, but these errors were encountered: