在Azure Service Bus上使用基本路径订阅大众运输主题

时间:2019-06-13 16:09:00

标签: azureservicebus masstransit

我正在使用基本路径属性分离出一些事件。像这样:

cfg.Publish<IMyEvent>(p =>
{
    p.EnablePartitioning = false;
    p.BasePath = "qwerty";
});

我可以在总线浏览器(qwerty/mynamespace/imyevent)中看到成功创建的主题。

但是我无法订阅该主题。我一直在没有基本路径的情况下使用的逻辑是:

cfg.SubscriptionEndpoint<IMyEvent>(host, "BlaServiceSubscription", e =>
{
    e.Consumer<MyConsumer>(provider);
});

如何告诉消费者应该使用的基本路径是什么?

0 个答案:

没有答案