Click here to Skip to main content
Licence CPOL
First Posted 25 Mar 2009
Views 7,855
Downloads 101
Bookmarked 11 times

High Precision Task Scheduler

By | 25 Mar 2009 | Article
High precision tool for scheduling finely grained tasks (w/in a single process)

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.

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)

About the Author

ronnotel

Web Developer

United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 PinmemberMichael E. Jones4:39 26 Mar '09  
General[My vote of 2] hmm... more thoughts Pinmemberjohannesnestler2:25 26 Mar '09  
GeneralThoughts PinmemberPIEBALDconsult10:55 25 Mar '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 25 Mar 2009
Article Copyright 2009 by ronnotel
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid