我正在使用基本路径属性分离出一些事件。像这样:
cfg.Publish<IMyEvent>(p =>
{
p.EnablePartitioning = false;
p.BasePath = "qwerty";
});
我可以在总线浏览器(qwerty/mynamespace/imyevent
)中看到成功创建的主题。
但是我无法订阅该主题。我一直在没有基本路径的情况下使用的逻辑是:
cfg.SubscriptionEndpoint<IMyEvent>(host, "BlaServiceSubscription", e =>
{
e.Consumer<MyConsumer>(provider);
});
如何告诉消费者应该使用的基本路径是什么?