public OutboxCleaner(OutboxRecordsCleaner cleaner, TimeSpan frequencyToRunDeduplicationDataCleanup, TimeSpan timeToKeepDeduplicationData)
 {
     this.cleaner = cleaner;
     this.frequencyToRunDeduplicationDataCleanup = frequencyToRunDeduplicationDataCleanup;
     this.timeToKeepDeduplicationData            = timeToKeepDeduplicationData;
 }
Esempio n. 2
0
 public OutboxCleaner(OutboxRecordsCleaner cleaner, ReadOnlySettings settings)
 {
     this.cleaner  = cleaner;
     this.settings = settings;
     logger        = LogManager.GetLogger <OutboxCleaner>();
 }