public void OnUpdated(object sender, ArrayWatchObject <double> e)
 {
     if (Updated != null)
     {
         Updated(sender, e);
     }
 }
Exemple #2
0
 public MFListWatcher(WatchDirectory directory)
 {
     _WatchObject      = new ArrayWatchObject <double>();
     _directoryToWatch = directory;
     FileName          = _directoryToWatch.FilePath;
     State             = RunningState.Stopped;
 }
Exemple #3
0
 public MFListWatcher(MFMonitor monitor)
 {
     _MFMonitor   = monitor;
     State        = RunningState.Stopped;
     _WatchObject = new ArrayWatchObject <double>();
 }
Exemple #4
0
 public CSVWatcher()
 {
     State        = RunningState.Stopped;
     _WatchObject = new ArrayWatchObject <double>();
 }