Ricky
Ricky

Reputation: 35833

How to write C# Scheduler

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.

Upvotes: 11

Views: 52957

Answers (6)

sp2012
sp2012

Reputation: 133

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);
        }
    }
}

Upvotes: 3

fixagon
fixagon

Reputation: 5566

There are different timers in .NET

  • System.Threading.Timer
  • System.Windows.Forms.Timer
  • System.Timers.Timer

Depending on what you want to do (and in which environment, threadsave, bla bla) you should choose one of them.

some more information

Upvotes: 1

Alex_L
Alex_L

Reputation: 2666

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.

Upvotes: 1

mike
mike

Reputation: 550

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();
        }
    }

Upvotes: 1

Davide Piras
Davide Piras

Reputation: 44595

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

Upvotes: 11

PVitt
PVitt

Reputation: 11740

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.

Upvotes: 12

Related Questions