示例#1
0
        public void Notify(IEventStore eventStore, EventStream streamOfEvents)
        {
            var commandContextsToNotify = GetUniqueCommandContextsFromEvents(streamOfEvents);

            foreach (var commandContext in commandContextsToNotify)
            {
                _commandCoordinatorEvents.EventsProcessed(commandContext);
            }
        }