示例#1
0
        public WriteStore(TimeSpan timerInterval)
        {
            _timer = new Timer()
            {
                AutoReset = true,
                Enabled   = true,
                Interval  = timerInterval.TotalMilliseconds
            };
            _timer.Elapsed += new ElapsedEventHandler(_timer_Elapsed);
            _timer.Start();

            FilePathProvider = new FilePaths();
        }
示例#2
0
 public QueryStore()
 {
     FilePathProvider = new FilePaths();
 }