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