Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to write C# Scheduler

Tags:

c#

How do I write a Alert which will run at 00:00, 00:15, 00:30, and so on every day?

Can you give me an example code?

Thank you.

like image 754
Ricky Avatar asked Oct 14 '11 08:10

Ricky


5 Answers

For example:

using System.Timers;
    class Program
    {
        static void Main(string[] args)
        {
            Timer timer = new Timer();
            timer.Interval = new TimeSpan(0, 15, 0).TotalMilliseconds;
            timer.AutoReset = true;
            timer.Elapsed += new ElapsedEventHandler(timer_Elapsed);
            timer.Enabled = true;
        }

        static void timer_Elapsed(object sender, ElapsedEventArgs e)
        {
            throw new NotImplementedException();
        }
    }
like image 197
mike Avatar answered Nov 14 '22 16:11

mike


Here is a basic C# scheduler:

using System;
using System.Threading;
using System.Windows.Forms;
using System.IO;

public class TimerExample
{
    public static void Main()
    {
        bool jobIsEnabledA = true;
        bool jobIsEnabledB = true;
        bool jobIsEnabledC = true;

        Console.WriteLine("Starting at: {0}", DateTime.Now.ToString("h:mm:ss"));

        try
        {
            using (StreamWriter writer = File.AppendText("C:\\scheduler_log.txt"))
            {
                while (true)
                {
                    var currentTime = DateTime.Now.ToString("h:mm");

                    if (currentTime == "3:15" && jobIsEnabledA)
                    {
                        jobIsEnabledA = false;
                        ThreadPool.QueueUserWorkItem((state) => { MessageBox.Show(string.Format("Time to brush your teeth! {0}", currentTime) ); });
                    }

                    if (currentTime == "3:20" && jobIsEnabledB)
                    {
                        jobIsEnabledB = false;
                        ThreadPool.QueueUserWorkItem((state) => { MessageBox.Show(string.Format("Time to brush your teeth! {0}", currentTime)); });
                    }

                    if (currentTime == "3:30" && jobIsEnabledC)
                    {      
                        jobIsEnabledC = false;
                        ThreadPool.QueueUserWorkItem((state) => { MessageBox.Show(string.Format("Time for your favorite show! {0}", currentTime)); });
                    }

                    if (currentTime == "3:31")
                    {      
                        jobIsEnabledA = true;
                        jobIsEnabledB = true;
                        jobIsEnabledC = true;
                    }

                    var logText = string.Format("{0} jobIsEnabledA: {1} jobIsEnabledB: {2} jobIsEnabledC: {3}", DateTime.Now.ToString("h:mm:ss"), jobIsEnabledA, jobIsEnabledB, jobIsEnabledC);
                    writer.WriteLine(logText);

                    Thread.Sleep(1000);
                }
            }
        }
        catch (Exception exception)
        {
            Console.WriteLine(exception);
        }
    }
}
like image 45
sp2012 Avatar answered Nov 14 '22 18:11

sp2012


You can use a timer that runs every minute that checks the current time. The check can look like:

private void OnTimerTick()
{
    if(DateTime.Now.Minutes%15==0)
    {
        //Do something
    }
}

But if you are looking for a program or service that has to be run every 15 minutes you can just write your application and have it started using a windows planned task.

like image 32
PVitt Avatar answered Nov 14 '22 18:11

PVitt


You can write your program to execute certain task every time it is opened then you use Windows Scheduled Tasks to execute your program every day at certain times.

your program will be simpler and you will focus only on the logic you need to implement, the scheduling will be done by Windows for you, for free (assuming you already paid Windows :) ).

if you really want to implement the scheduling by yourself, there are frameworks and libraries like this one: Quartz.NET

like image 21
Davide Piras Avatar answered Nov 14 '22 17:11

Davide Piras


If you want the windows service that executes some code with some time interwal, you need to create the service project (see here), and use in this service the Timer class (see here). If you want to run these task when your windows application is executes, use the Windows.Forms.Timer, as mentioned before.

like image 37
Alex_L Avatar answered Nov 14 '22 18:11

Alex_L