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

High Precision Task Scheduler

Rate me:
Please Sign up or sign in to vote.
2.00/5 (4 votes)
25 Mar 2009CPOL1 min read 24.4K   296   11   3
High precision tool for scheduling finely grained tasks (w/in a single process)
Image 1

Introduction

This project provides a simple, scalable mechanism for scheduling arbitrary events with a high degree of precision. Key features of this approach include: high-precision timing to the extent provided by the architecture, good scalability that does not require the use of one thread per pending event, flexible choice of actions that can be scheduled. This project assumes the use of a single process, cross-process scheduling is outside this scope.

Background

In certain high-precision environments, such as high-frequency trading, it is important to schedule tasks with a great degree of precision. For instance, you may want to cancel an order exactly 1.5 seconds after it has been submitted. One solution is to spin off separate threads for each task and using Thread.Sleep() to cause the thread to wake up at the given time. While threads are cheap, this approach requires one thread per pending task and may not scale well.

Alternatively, the technique used here relies on a tight loop that wakes up every 20 milliseconds and checks for any pending events that have been scheduled for the current period. An arbitrary number of events can be scheduled for any 20 millisecond period.

Using the Code

The TaskScheduler has the main event loop, which is invoked when the singleton instance is constructed. To schedule an event, simply provide the ScheduledEventDelegate (i.e. method to execute), together with a TimeSpan indicating how long to delay the start of the event as well as the list of input parameters. E.g.

C#
TaskScheduler.Instance.AddToDoEvent
	(TaskScheduler.Instance.Action1, TimeSpan.FromMilliseconds(5000), "anObject");

To shut down the event loop, simply set the Program.m_KeepRunning property to false.

History

  • 24th March, 2009: Initial version

License

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


Written By
Web Developer
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

 
GeneralMy vote of 1 Pin
Michael E. Jones26-Mar-09 4:39
Michael E. Jones26-Mar-09 4:39 
Poor article and author does not seem to have done any background research..
General[My vote of 2] hmm... more thoughts Pin
johannesnestler26-Mar-09 2:25
johannesnestler26-Mar-09 2:25 
GeneralThoughts Pin
PIEBALDconsult25-Mar-09 10:55
mvePIEBALDconsult25-Mar-09 10:55 

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.