Example #1
0
 public EventStoreIndexBuilder(IPublisher <ICommand> commandPublisher, IPublisher <IScheduledMessage> timeoutRequestPublisher, ICronusJobRunner jobRunner, RebuildIndex_EventToAggregateRootId_JobFactory jobFactory, RebuildIndex_MessageCounter_JobFactory messageCounterJobFactory)
     : base(commandPublisher, timeoutRequestPublisher)
 {
     this.jobRunner  = jobRunner;
     this.jobFactory = jobFactory;
     this.messageCounterJobFactory = messageCounterJobFactory;
 }
Example #2
0
 public ProjectionBuilder(IPublisher <ICommand> commandPublisher, IPublisher <IScheduledMessage> timeoutRequestPublisher, ICronusJobRunner jobRunner, Projection_JobFactory jobFactory)
     : base(commandPublisher, timeoutRequestPublisher)
 {
     this.jobRunner  = jobRunner;
     this.jobFactory = jobFactory;
 }
Example #3
0
 public PublicEventsPlayer(ICronusJobRunner jobRunner, ReplayPublicEvents_JobFactory jobFactory)
 {
     this.jobRunner  = jobRunner;
     this.jobFactory = jobFactory;
 }