コード例 #1
0
        public ReclassifyErrorsHandler(IBus bus, IDocumentStore store, ShutdownNotifier notifier, IEnumerable <IFailureClassifier> classifiers)
        {
            this.bus         = bus;
            this.store       = store;
            this.classifiers = classifiers;

            reclassifier = new Reclassifier(notifier);
        }
コード例 #2
0
        public ReclassifyErrorsHandler(IDocumentStore store, IDomainEvents domainEvents, ShutdownNotifier notifier, IEnumerable <IFailureClassifier> classifiers)
        {
            this.store        = store;
            this.classifiers  = classifiers;
            this.domainEvents = domainEvents;

            reclassifier = new Reclassifier(notifier);
        }