I ask though I doubt there is any such system.
Basically I need to schedule tasks to execute at some point in the future (usually no more than a few seconds or possibly
Well.....Actually you can do exactly what you asked....
IDisposable kill = null;
kill = Scheduler.TaskPool.Schedule(() => DoSomething(), dueTime);
kill.Dispose();
Using Rx the Reactive Framework from our buddies at Microsoft :)
Rx is quite amazing. I've all but replaced events with it. It is just plain yummy...
Hi I'm Rusty I'm an Rx addict...and I like it.