Class used to broadcast about new transactions.
Example #1
0
 public TransactionReceiver(TransactionNotification transactionNotification, TransactionNotificationProgress notifiedTransactions, ILogger logger)
 {
     this.transactionNotification = transactionNotification;
     this.notifiedTransactions    = notifiedTransactions;
     this.logger = logger;
 }
Example #2
0
 public TransactionReceiver(TransactionNotification transactionNotification, TransactionNotificationProgress notifiedTransactions, ILoggerFactory loggerFactory)
     : this(transactionNotification, notifiedTransactions, loggerFactory.CreateLogger(typeof(TransactionReceiver).FullName))
 {
 }