订阅者也可以在 NServiceBus 中发布/发送消息吗?
NServiceBus 中的通信是双向的吗?
订阅者也可以发布/发送消息?
Is the communication bi-directional in NServiceBus?
a subscriber can also publish/send message?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NServiceBus确实支持双向通信,订阅者也可以发布消息。像往常一样将其配置为发布者,为来自其他发布者的事件编写处理程序,在 UnicastBusConfig 中配置消息,然后就完成了。
NServiceBus does indeed support bi-directional communication, a subscriber can publish messages as well. Configure it as a publisher as per-usual, write handlers for events coming from other publishers, configure the messages in the UnicastBusConfig, and you're done.