posted 13 years ago
Hi,
I would like to schedule task execution in bit complicated way.
I want to split a day into intervals, and define the periods of the task execution within these time intervalls.
For example:
8:00am to 13:00pm = 5000 (milliseconds)
13:00pm to 21:00pm = 3000
So, between the first period i want periodic task execution in 5 seconds, and for the latter 3 seconds.
Are there some scheduling framework which supports this, or shall i implement it with Timer?
If only the latter is possible any hint would be nice.
Thanks