P
Paul J. Hurley
I am working on an application that will repeat a certain procedure after a
user specified time interval. This interval could be as brief as 2
seconds, or as long as once every hour or two. If it was limited to
several seconds or even every few minutes, I would use one of the timer
classes, probably System.Threading.Timer. But I don't know if it's good
practice to allocate a Timer for something as long as a couple of hours. I
know the System.Windows.Forms.Timer has limitations on the interval, but I
can't find any such limits in any of the Threading timers doco.
Is it OK to use a System.Threading.Timer for an hourly interval?
Thanks
Paul
user specified time interval. This interval could be as brief as 2
seconds, or as long as once every hour or two. If it was limited to
several seconds or even every few minutes, I would use one of the timer
classes, probably System.Threading.Timer. But I don't know if it's good
practice to allocate a Timer for something as long as a couple of hours. I
know the System.Windows.Forms.Timer has limitations on the interval, but I
can't find any such limits in any of the Threading timers doco.
Is it OK to use a System.Threading.Timer for an hourly interval?
Thanks
Paul