Пример #1
0
 public void Handle(ProjectionCoreServiceMessage.StopCore message)
 {
     Log.Debug("PROJECTIONS: Stopping Projection Core Reader ({0})", _coreServiceId);
     _cancellationScope.Cancel();
     _stopped = true;
     _publisher.Publish(new ProjectionCoreServiceMessage.SubComponentStopped("ProjectionCoreServiceCommandReader"));
 }
Пример #2
0
 public void Handle(ProjectionCoreServiceMessage.StopCore message)
 {
     StopProjections();
 }
Пример #3
0
 public void Handle(ProjectionCoreServiceMessage.StopCore message)
 {
     _stopQueueId = message.QueueId;
     StopProjections();
 }
 public void Handle(ProjectionCoreServiceMessage.StopCore message)
 {
     DebugLogger.Log("Stopping projection core reader");
     _cancellationScope.Cancel();
     _stopped = true;
 }
Пример #5
0
 public void Handle(ProjectionCoreServiceMessage.StopCore message)
 {
     Log.Debug("PROJECTIONS: Stopping Projection Core Reader ({0})", _coreServiceId);
     _cancellationScope.Cancel();
     _stopped = true;
 }
 public void Handle(ProjectionCoreServiceMessage.StopCore message)
 {
     StopProjections();
     _publisher.Publish(new ProjectionCoreServiceMessage.SubComponentStopped("ProjectionCoreService"));
 }