More thoroughly determines if a file has been processed. Compares file modified stamps for paths that have been logged.
 public virtual void Initialize(XmlElement config, IEventManager eventManager, IProfile profile) {
     folderFilterPattern = config["Filter"].InnerText;
     suiteName = config["SuiteName"].InnerText;
     monitor = new RecyclingFileMonitor(profile, config["Watch"].InnerText, folderFilterPattern, Process);
     this.eventManager = eventManager;
     this.eventManager.Subscribe(EventSinkType, monitor.ProcessFolder);
 }
コード例 #2
0
 public virtual void Initialize(XmlElement config, IEventManager eventManager, IProfile profile)
 {
     folderFilterPattern = config["Filter"].InnerText;
     suiteName           = config["SuiteName"].InnerText;
     monitor             = new RecyclingFileMonitor(profile, config["Watch"].InnerText, folderFilterPattern, Process);
     this.eventManager   = eventManager;
     this.eventManager.Subscribe(EventSinkType, monitor.ProcessFolder);
 }