Click here to Skip to main content
15,881,380 members
Articles / Programming Languages / C#

Task Scheduler

Rate me:
Please Sign up or sign in to vote.
4.86/5 (84 votes)
18 Apr 2015CPOL2 min read 289.8K   25.5K   304   73
A simple structured native task scheduler

Image 1

Introduction

Task Scheduler is a class that schedules and automatically fires events at a time you specify. All important triggers are available: OnlyOneTime, Daily, Weekly and Monthly.  

So why another Task Scheduler?

We need for one of our projects a scheduler that

  1. Can check a date or show all dates on which a trigger will fire.  (See the demo - button "Show List")
  2. We need to schedule tasks not only daily, weekly,... we need a combination of them. e.g. every Wednesday (weekly trigger) plus every last day in a month (monthly trigger)

Update 1: Version 1.1

  • Added date formatting during serialization/deserialization
  • Fixed issue in TriggerItem.FromXML()

Update 2: Version 1.2

  • Now using System.Timers.Timer instead of System.Windows.Forms.Timer
  • Minor changes in XML serialization
  • Demo now includes a Windows-Service with full service control (start/stop/install/uninstall)
  • TriggerItemCollection support now serialization / deserialization
  • Bug fixes

Features

  • Simple structure and easy to use
  • Possible triggers: OneTimeOnly, Daily, Weekly and Monthly
  • Monthly trigger: DayOfMonth and Weekday
  • Collection of TriggerItems
  • Next Trigger-Date/Time information
  • Check if a TriggerItem will fire on a certain date CheckDate(DateTime date)
  • Combine different triggers in one item. (e.g. every Friday plus every last day in a month)
    If there is an overlap the Trigger will fire only one time
  • Save and restore TriggerItems to and from XML

Settings

Field Description
StartDate Specifies the first date on which the trigger will fire
EndDate Specifies the last date on which the trigger will fire
TriggerTime Specifies the time on which the trigger will fire
Enabled Enable / disable the trigger
TriggerSettings Set the appropriate trigger-dates as described below

TriggerItem.TriggerSettings Overview:
Another_TaskScheduler/TriggerSettings.jpg

To activate a specific date just set the appropriate flag(s):

// Activate Sunday on weekly trigger.
triggerItem.TriggerSettings.Weekly.DaysOfWeek[(int)DayOfWeek.Sunday] = true;

// Activate last Friday in January and February
triggerItem.TriggerSettings.Monthly.Month[(int)TaskScheduler.MonthOfTheYeay.January] = 
    true; 
triggerItem.TriggerSettings.Monthly.Month[(int)TaskScheduler.MonthOfTheYeay.February] = 
    true; 
triggerItem.TriggerSettings.Monthly.DaysOfMonth[(int)TaskScheduler.DayOccurrence.Last] =
    true; 
triggerItem.TriggerSettings.Monthly.WeekDay[(int)DayOfWeek.Sunday] = true;

Using TaskScheduler and TriggerItems

  1. Create a new instance of TaskScheduler.
    // Create the TaskScheduler
    TaskScheduler _taskScheduler = new TaskScheduler();
    
    // Set the synchronizing object to get trigger events within the main thread.
    // Important if you're using Windows Forms
    _taskScheduler.SynchronizingObject = this;
  2. Create a new Trigger-Item. Set start and end date + trigger time and if you like a tag.
    TaskScheduler.TriggerItem triggerItem = new TaskScheduler.TriggerItem();
    triggerItem.Tag = textBoxlabelOneTimeOnlyTag.Text;
    triggerItem.StartDate = dateTimePickerStartDate.Value;
    triggerItem.EndDate = dateTimePickerEndDate.Value;
    triggerItem.TriggerTime = dateTimePickerTriggerTime.Value;
    // And the trigger-Event :)
    triggerItem.OnTrigger += new TaskScheduler.TriggerItem.OnTriggerEventHandler(
        triggerItem_OnTrigger);

    Settings for "OneTimeOnly"

    TriggerItem.TriggerSettings.OneTimeOnly.Active = checkBoxOneTimeOnlyActive.Checked;
    triggerItem.TriggerSettings.OneTimeOnly.Date = 
        dateTimePickerOneTimeOnlyDay.Value.Date;

    Settings for "Daily"

    triggerItem.TriggerSettings.Daily.Interval = (ushort)numericUpDownDaily.Value;

    Settings for "Weekly"

    for (byte day = 0; day < 7; day++) // Set the active Days
    triggerItem.TriggerSettings.Weekly.DaysOfWeek[day] = 
        checkedListBoxWeeklyDays.GetItemChecked(day);

    Settings for "Monthly"

    for (byte month = 0; month < 12; month++) // Set the active Months
        triggerItem.TriggerSettings.Monthly.Month[month] = 
        checkedListBoxMonthlyMonths.GetItemChecked(month);
    
    // Set the active Days (0..30 = Days, 31=last Day) for monthly trigger
    for (byte day = 0; day < 32; day++)
        triggerItem.TriggerSettings.Monthly.DaysOfMonth[day] = 
        checkedListBoxMonthlyDays.GetItemChecked(day);
    
    // Set the active weekNumber and DayOfWeek
    // e.g the first monday, or the last friday...
    // 0..4: first, second, third, fourth or last week
    
    for (byte weekNumber = 0; weekNumber < 5; weekNumber++)     
        triggerItem.TriggerSettings.Monthly.WeekDay.WeekNumber[weekNumber] = 
        checkedListBoxMonthlyWeekNumber.GetItemChecked(weekNumber);
    for (byte day = 0; day < 7; day++)
        triggerItem.TriggerSettings.Monthly.WeekDay.DayOfWeek[day] = 
        checkedListBoxMonthlyWeekDay.GetItemChecked(day);
  3. Add the trigger to the Collection and enable the Scheduler
    triggerItem.Enabled = true; // Set the Item-Active - State
    _taskScheduler.AddTrigger(item); // Add the trigger to List
    _taskScheduler.Enabled = true; // Start the Scheduler

Disclaimer

THE SOFTWARE AND THE ACCOMPANYING FILES ARE DISTRIBUTED "AS IS" AND WITHOUT ANY WARRANTIES WHETHER EXPRESSED OR IMPLIED. NO REPONSIBILITIES FOR POSSIBLE DAMAGES OR EVEN FUNCTIONALITY CAN BE TAKEN. THE USER MUST ASSUME THE ENTIRE RISK OF USING THIS SOFTWARE.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
p++ Datentechnik GmbH
Germany Germany
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionAbout existing tasks Pin
Gluups19-Aug-21 14:25
Gluups19-Aug-21 14:25 
AnswerRe: About existing tasks Pin
Lothar Perr31-Jan-22 9:33
Lothar Perr31-Jan-22 9:33 
GeneralRe: About existing tasks Pin
Gluups31-Jan-22 9:39
Gluups31-Jan-22 9:39 
QuestionAdding Min Pin
xCNBLxxx20-Sep-19 4:54
xCNBLxxx20-Sep-19 4:54 
Question.NET 4.5 vs .NET 2.0 Pin
IlyaCher25-Jul-18 4:57
IlyaCher25-Jul-18 4:57 
QuestionIt has Snooze mode? Pin
Célio7-Aug-17 0:47
Célio7-Aug-17 0:47 
AnswerRe: It has Snooze mode? Pin
Lothar Perr11-Sep-17 6:02
Lothar Perr11-Sep-17 6:02 
GeneralRe: It has Snooze mode? Pin
Célio11-Oct-17 0:57
Célio11-Oct-17 0:57 
QuestionHow To Use It , Demo to start some scheduled application Pin
Sushil.Agarwal11-May-17 23:27
Sushil.Agarwal11-May-17 23:27 
QuestionCall another application from this one Pin
Venkat Raghvan18-Jul-16 22:33
Venkat Raghvan18-Jul-16 22:33 
Questionschadule batch Pin
ahmed mohmed21-Feb-16 22:21
ahmed mohmed21-Feb-16 22:21 
BugError Pin
IndrajitDasgupat1-Dec-15 18:40
IndrajitDasgupat1-Dec-15 18:40 
QuestionManage Trigger Pin
format C: /U29-Nov-15 3:22
format C: /U29-Nov-15 3:22 
SuggestionTypo in MonthOfTheYear Enum Pin
chrisbray20-Apr-15 23:36
chrisbray20-Apr-15 23:36 
GeneralRe: Typo in MonthOfTheYear Enum Pin
Lothar Perr22-Apr-15 0:45
Lothar Perr22-Apr-15 0:45 
SuggestionTake a look at events Pin
Rene Balvert20-Apr-15 3:21
Rene Balvert20-Apr-15 3:21 
GeneralRe: Take a look at events Pin
Lothar Perr20-Apr-15 7:07
Lothar Perr20-Apr-15 7:07 
GeneralRe: Take a look at events Pin
Rene Balvert20-Apr-15 7:18
Rene Balvert20-Apr-15 7:18 
GeneralRe: Take a look at events Pin
Lothar Perr20-Apr-15 7:57
Lothar Perr20-Apr-15 7:57 
QuestionUTC Pin
Wombaticus19-Apr-15 4:29
Wombaticus19-Apr-15 4:29 
AnswerRe: UTC Pin
Lothar Perr19-Apr-15 8:09
Lothar Perr19-Apr-15 8:09 
GeneralRe: UTC Pin
Wombaticus19-Apr-15 8:21
Wombaticus19-Apr-15 8:21 
QuestionRequire task scheduler software Pin
Member 114314875-Feb-15 18:54
Member 114314875-Feb-15 18:54 
QuestionI could not download the source code Pin
dotnetmurthy5-Jan-15 22:42
dotnetmurthy5-Jan-15 22:42 
QuestionNot Triggering the Event :S Pin
UngarMax014-Dec-13 11:07
UngarMax014-Dec-13 11:07 

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.