Click here to Skip to main content
6,634,665 members and growing! (15,690 online)
Email Password   helpLost your password?
General Reading » Hardware & System » System     Advanced

A component for event scheduling inside an application

By Sriram Chitturi

This article presents the design and a readily usable component for scheduling events which are consumed inside a server or service application.
C#, Windows, .NET 1.1VS.NET2003, Architect, Dev
Posted:30 Sep 2004
Views:99,165
Bookmarked:153 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
62 votes for this article.
Popularity: 8.35 Rating: 4.66 out of 5
2 votes, 3.2%
1

2
4 votes, 6.5%
3
7 votes, 11.3%
4
49 votes, 79.0%
5

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.

// 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.

Design and Code details

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

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

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.

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.

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

About the Author

Sriram Chitturi


Member

Occupation: Architect
Company: Philegance LLC
Location: United States United States

Other popular Hardware & System articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 65 (Total in Forum: 65) (Refresh)FirstPrevNext
Generaltake a look at Quartz PinmemberChris Tracy10:30 17 May '08  
GeneralRe: take a look at Quartz PinmemberJ0J0_4:18 28 Jun '08  
GeneralVS 2008 problem: Cross-thread operation not valid PinmemberMr_AndersonNET0:14 6 May '08  
Generalnew version for schedle? Pinmemberqq344486353:59 10 Apr '08  
QuestionPersist in a database Pinmembercamlopes5:33 21 Jan '08  
GeneralThanks for the idea PinmemberJoseph Wee13:57 27 Nov '07  
GeneralRe: Thanks for the idea PinmemberSriram Chitturi1:06 28 Nov '07  
GeneralRunning without GUI Pinmemberroseen22:51 25 Sep '07  
GeneralRe: Running without GUI Pinmembersamphil3:42 26 Sep '07  
GeneralNew version Pinmemberdima polyakov11:16 21 Sep '07  
GeneralRe: New version Pinmemberingos200712:23 22 Sep '07  
GeneralRe: New version Pinmemberdima polyakov11:56 23 Sep '07  
GeneralRe: New version Pinmembersamphil3:40 26 Sep '07  
GeneralRe: New version Pinmemberdima polyakov6:07 26 Sep '07  
GeneralPerhaps you should read up on 'lock' Pinmemberrobvon0:20 19 Sep '07  
GeneralFIX - Intervals were not expiring. Pinmemberkurios12:22 23 Aug '07  
GeneralPlz upload the updated version PinmemberBill_Gates22:01 26 Feb '07  
GeneralNew Programmer PinmemberDoritkatz0:28 21 Jan '07  
GeneralRe: New Programmer Pinmembertridex4:48 18 Jun '07  
Questiona gread deal of schedues will to run Pinmemberhou12614:39 14 Nov '06  
GeneralA great article PinmemberAsad_KA11:59 22 Sep '06  
QuestionEvent Scheduler PinmemberNicos Andreou0:01 21 Sep '06  
GeneralHow to have params passed into ScheduleCallBack Pinmemberhannalu13:33 14 Feb '06  
QuestionRe: How to have params passed into ScheduleCallBack PinmemberBraveShogun2:45 19 Dec '06  
Generalsupport / bugfixes PinmemberKylixs8:05 9 Oct '05  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 30 Sep 2004
Editor: Smitha Vijayan
Copyright 2004 by Sriram Chitturi
Everything else Copyright © CodeProject, 1999-2009
Web22 | Advertise on the Code Project