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