在 CQRS 中发布命令时我应该使用什么方法
我可能会使用 NService 总线,我知道事件调度程序会将事件发布给订阅者,但我想知道在第一个实例中发布命令是否正确?
I'm probably going to be using NService bus, I understand that the dispatcher of events is going to publish the events to the subscribers but i'm wondering if it's correct to publish the commands in the 1st instance?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发布和发布/订阅工作流程对于事件来说是有意义的,但是命令应该有一个处理器,因此应该“发送”而不是发布。除了 pub/sub 之外,NServiceBus 还支持这个概念。
另请注意,在 CQRS 架构中,查询不是命令,因此不最适合与 NServiceBus 一起使用。
Publishing and a pub/sub workflow makes sense for events however Commands are meant to have a single processor and therefore should be 'sent' not published. NServiceBus supports this concept in addition to pub/sub.
Note also that in a CQRS architecture queries are not commands and therefore not best suited for use with NServiceBus.