Exemplo n.º 1
0
        protected override void OnStop()
        {
            Log.LogInfoMessage("Stopping service");

            try
            {
                DataRequestScheduler.ClearScheduler();
            }
            catch (Exception ex)
            {
                Log.LogException(ex);
            }
        }
Exemplo n.º 2
0
 protected override void OnStart(string[] args)
 {
     try
     {
         DataRequestJob FirstExecution = new DataRequestJob();
         FirstExecution.Execute(null);
         DataRequestScheduler.ScheduleDataRequest();
     }
     catch (Exception ex)
     {
         Log.LogException(ex);
     }
 }