Example #1
0
 public BlockAcceptedEventHandler(
     ILogEventProcessingService <IBlockAcceptedLogEventProcessor> logEventProcessingService)
 {
     _logEventProcessingService = logEventProcessingService;
 }
Example #2
0
 public LogEventProcessingServiceTests()
 {
     _logEventProcessingService = GetRequiredService <ILogEventProcessingService <ITestLogEventProcessor> >();
     _testLogEventProcessor     = GetRequiredService <ITestLogEventProcessor>();
     _kernelTestHelper          = GetRequiredService <KernelTestHelper>();
 }
Example #3
0
 public BlocksExecutionSucceededEventHandler(ILogEventProcessingService <IBlocksExecutionSucceededLogEventProcessor> logEventProcessingService)
 {
     _logEventProcessingService = logEventProcessingService;
 }