那么通过Event Store 3.0发布事件的推荐方法是什么?假设我像这样连接EventStore:
.UsingAsynchronousDispatchScheduler()
.DispatchTo(new DelegateMessageDispatcher(DispatchCommit))
其中'DispatchCommit'看起来像这样:
DispatchCommit(Commit commit)
我可以按预期观看已发生的事件。但是,ES 2.0让IContainer传入消息调度程序,我可以解析总线实例并发送事件。我应该使用一个实现IDispatchCommits的类吗?
任何使用ES 3.0的人都有想法吗?