I'm trying to create a service that executes scheduled Tasks in an asynchronous (and parallel) way using TPL.
The basic requirement is that for a bunch of different tasks, each with their own scheduled rates (some to be executed every second, others 30 seconds, other 5 mins etc) to be executed concurrently. And I'm not sure of the best way to go about this, especially considering the ConcurrentBag (which I was considering as a holder of all future tasks) contains no methods with which to select collections of tasks that need to be executed.
It also means that I can't use WaitAny or WaitAll, as these short-running tasks need to finish and requeue themselves independently.
How should I proceed with this?
Edit:
Ok basically my design is thus:
A ScheduledTask, which is a wrapper for Task with a Scheduled DateTime property. A bunch of these are stored in a ConcurrentBag
A Controller that polls the ConcurrentBag (currently just a while(true) loop, but could be a Timer or similar), removing any that are scheduled, and Start()'s them.
Each ScheduledTask holds a reference to the ConcurrentBag, and enqueues a new instance of itself when it completes, with a new ScheduledTime.
This design seems to work so far, but there is something about each Task holding a reference to the ConcurrentBag that doesn't sit well with me. Any design comments or suggestions would be appreciated.