private void set_timer(ImportFilesCompleteMessage message)
 {
     _timer.Interval = TimeSpan.FromMinutes(DEFAULT_MINUTES).TotalMilliseconds;
     _timer.Elapsed += (sender, args) => synchronize();
     _timer.Start();
     this.Log().Info(
         () => "{0} will check back in {1} minutes to see if the system can shut down".format_with(
             GetType().Name,
             DEFAULT_MINUTES));
 }
 private void set_timer(ImportFilesCompleteMessage message)
 {
     _timer.Interval = TimeSpan.FromMinutes(DEFAULT_MINUTES).TotalMilliseconds;
     _timer.Elapsed += (sender, args) => synchronize();
     _timer.Start();
     this.Log().Info(
         () => "{0} will check back in {1} minutes to see if the system can shut down".format_with(
             GetType().Name,
             DEFAULT_MINUTES));
 }