Click here to Skip to main content
15,879,095 members
Articles / Programming Languages / C#
Article

A component for event scheduling inside an application

Rate me:
Please Sign up or sign in to vote.
4.89/5 (67 votes)
30 Sep 20043 min read 222.9K   6.9K   211   74
This article presents the design and a readily usable component for scheduling events which are consumed inside a server or service application.

Introduction

Every typical server or service application need scheduling of some events inside the application. These events generally are supposed to wake up at certain determined times to do self checks, check statuses of threads, or typically refresh resources once in a while, and so on. This requires shorter and long time scheduling of events inside the application. The most common approach is to use timers for different tasks and attach them to threads. A scheduler component is presented in this article for simplifying a way to create and maintain event scheduling inside an application.

Using the code

The best example to create and use the Schedule classes is in the demo application. This piece of code inside the demo creates all the types of schedule objects implemented in the library, and also provides a delegate ScheduleCallBack() for the schedule to call back for OnTrigger event.

C#
// create and add different types of schedules
Schedule s = new IntervalSchedule("Test_Interval", 
             DateTime.Now.AddMinutes(1), 45, TimeSpan.Zero, 
             new TimeSpan(TimeSpan.TicksPerDay));
s.OnTrigger += new EventScheduler.Invoke(ScheduleCallBack);
Scheduler.AddSchedule(s);

s = new OneTimeSchedule("Test_Onetime", DateTime.Now.AddMinutes(1.5));
s.OnTrigger += new EventScheduler.Invoke(ScheduleCallBack);
Scheduler.AddSchedule(s);

s = new DailySchedule("Test_daily", DateTime.Now.AddMinutes(2));
s.OnTrigger += new EventScheduler.Invoke(ScheduleCallBack);
Scheduler.AddSchedule(s);

s = new WeeklySchedule("Test_weekly", DateTime.Now.AddMinutes(2.5));
s.OnTrigger += new EventScheduler.Invoke(ScheduleCallBack);
Scheduler.AddSchedule(s);

s = new MonthlySchedule("Test_monthly", DateTime.Now.AddMinutes(3));
s.OnTrigger += new EventScheduler.Invoke(ScheduleCallBack);
Scheduler.AddSchedule(s);

As can be seen, the three main lines are to:

  • create a Schedule instance
  • subscribe to the OnTrigger event, and
  • add the Schedule to the Scheduler's list

That's it! To see this in action, run the demo application shown below and click on Test Code button. This will create an instance of each schedule and gives a feeling of what the scheduler can do.

Image 1

Design and Code details

The following class diagram shows the different classes in the scheduler library and their relationship.

Image 2

At the root of the library is the Schedule class which implements IComparable interface. The IComparable interface provides the CompareTo(Object) method which is used to compare two Schedule objects for sorting the list of schedules to determine the sequence of invocation times for the timer.

The library already provides general Schedules like OneTimeSchedule (used for raising an event only once), IntervalSchedule (used to raise an event at regular intervals), DailySchedule, WeeklySchedule and MonthlySchedule, which are self explanatory. The Schedule base class has generic properties like Name, Type, NextInvokeTime etc. used by all derived objects, and some specific properties like Interval which is used in this case only by IntervalSchedule.

These are the steps through which the Scheduler goes through for scheduling an event:

  • A static timer (Scheduler.Timer) with a call back method (DispatchEvents) is created and initially put to sleep.
  • Schedules are created either by code or by GUI. Individual conditions are checked in the Schedule's constructor.
  • When ever a Schedule object is added to the Scheduler using AddSchedule(Schedule s) method:
    • the list is sorted. The list which is an ArrayList in turn uses the Schedule.CompareTo(Object) method to determine the sorting order.
    • the NextInvokeTime of the first element in the list is used by the Timer to decide when to wake up next.
  • When the Timer wakes up:
    • it calls DispatchEvents call back
    • which calls TriggerEvents() on the first Schedule object in the list

Image 3

A Schedule's view GUI is also provided with the library to manage the schedules through a GUI as a singleton class (ScheduleUI) which is created by the static method ScheduleUI.ShowSchedules(). This GUI uses the Scheduler.OnSchedulerEvent event provided by Scheduler to track when a Schedule is created, deleted, or invoked.

Image 4

Typically, this GUI can be used for administration of schedules and also to create or delete them easily. Once a schedule is created, it can be accessed programmatically using Scheduler events or the name of the Schedule itself.

For e.g., the following code inside ScheduleUI class shows how the Scheduler events are used to refresh the list of Schedules.

C#
public void OnSchedulerEvent(SchedulerEventType type, string scheduleName)
{
    switch(type)
    {
        case SchedulerEventType.CREATED:
            ListViewItem lv = SchedulesView.Items.Add(scheduleName);
            Schedule s = Scheduler.GetSchedule(scheduleName);
            lv.SubItems.Add(s.Type.ToString());
            lv.SubItems.Add(s.NextInvokeTime.ToString("MM/dd/yyyy hh:mm:ss tt"));
            break;
        case SchedulerEventType.DELETED:
            for (int i=0; i<SchedulesView.Items.Count; i++)
                if (SchedulesView.Items[i].Text == scheduleName)
                    SchedulesView.Items.RemoveAt(i);
            break;
        case SchedulerEventType.INVOKED:
            for (int i=0; i<SchedulesView.Items.Count; i++)
                if (SchedulesView.Items[i].Text == scheduleName)
                {
                    Schedule si = Scheduler.GetSchedule(scheduleName);
                    SchedulesView.Items[i].SubItems[2].Text =
                        si.NextInvokeTime.ToString("MM/dd/yyyy hh:mm:ss tt");
                }
            break;
    }
    SchedulesView.Refresh();
}

Another critical piece of code is the bool[] m_workingWeekDays array in the Schedule base class, in which the active week days are stored. The bool NoFreeWeekDay() and bool CanInvokeOnNextWeekDay() use this array to determine if a schedule can run on a week day.

Similarly, the bool IsInvokeTimeInTimeRange() determines if a schedule can run in a time range on any given day. Please refer to comments in the code if you are interested to get into the details.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Architect
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralPlz upload the updated version Pin
Bill_Gates26-Feb-07 21:01
Bill_Gates26-Feb-07 21:01 
GeneralNew Programmer Pin
Doritkatz20-Jan-07 23:28
Doritkatz20-Jan-07 23:28 
GeneralRe: New Programmer Pin
tridex18-Jun-07 3:48
tridex18-Jun-07 3:48 
Questiona gread deal of schedues will to run Pin
hou12614-Nov-06 13:39
hou12614-Nov-06 13:39 
GeneralA great article Pin
Asad_KA22-Sep-06 10:59
Asad_KA22-Sep-06 10:59 
QuestionEvent Scheduler Pin
Nicos Andreou20-Sep-06 23:01
Nicos Andreou20-Sep-06 23:01 
QuestionHow to have params passed into ScheduleCallBack Pin
hannalu14-Feb-06 12:33
hannalu14-Feb-06 12:33 
AnswerRe: How to have params passed into ScheduleCallBack Pin
BraveShogun19-Dec-06 1:45
BraveShogun19-Dec-06 1:45 
Generalsupport / bugfixes Pin
Kylixs9-Oct-05 7:05
Kylixs9-Oct-05 7:05 
GeneralRe: support / bugfixes [modified] Pin
Gonzalo Brusella23-Jun-06 9:10
Gonzalo Brusella23-Jun-06 9:10 
GeneralRe: support / bugfixes Pin
Danilo Corallo30-Aug-06 3:37
Danilo Corallo30-Aug-06 3:37 
GeneralRe: support / bugfixes Pin
Gonzalo Brusella30-Aug-06 4:23
Gonzalo Brusella30-Aug-06 4:23 
GeneralThreads problem Pin
FredrikP22-Aug-05 5:20
FredrikP22-Aug-05 5:20 
GeneralRe: Threads problem Pin
Anonymous28-Aug-05 13:16
Anonymous28-Aug-05 13:16 
GeneralNovice User How to integrate with existing code Pin
ckandreou21-Jun-05 10:29
ckandreou21-Jun-05 10:29 
GeneralVb.net Pin
Member 199380525-May-05 9:06
Member 199380525-May-05 9:06 
GeneralRe: Vb.net Pin
Benjamin Hall14-Jun-05 13:04
Benjamin Hall14-Jun-05 13:04 
GeneralRe: Vb.net Pin
Doritkatz20-Jan-07 23:27
Doritkatz20-Jan-07 23:27 
QuestionRe: Vb.net Pin
corym26-Jul-07 2:39
corym26-Jul-07 2:39 
GeneralWeekdays bug Pin
yesildal8-Apr-05 16:59
yesildal8-Apr-05 16:59 
QuestionUpdates? Pin
Matt Philmon6-Apr-05 7:35
Matt Philmon6-Apr-05 7:35 
AnswerRe: Updates? Pin
sbouli30-May-05 2:39
sbouli30-May-05 2:39 
GeneralRe: Updates? Pin
Danilo Corallo30-Aug-06 3:36
Danilo Corallo30-Aug-06 3:36 
GeneralSriram Pin
mike_oop14-Mar-05 5:31
mike_oop14-Mar-05 5:31 
GeneralSerialized Schedules Pin
Paully Waddle Doodle All Day8-Mar-05 4:33
Paully Waddle Doodle All Day8-Mar-05 4:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.