Exemple #1
0
        public void Handle(CoreProjectionManagementMessage.LoadStopped message)
        {
            var command = new LoadStoppedCommand {
                Id = message.ProjectionId.ToString("N")
            };

            _commandWriter.PublishResponse("$load-stopped", message.WorkerId, command);
        }
Exemple #2
0
        public void Handle(CoreProjectionManagementMessage.LoadStopped message)
        {
            var projection = _projections[message.ProjectionId];

            projection.LoadStopped();
        }