Synchronizing a timer to prevent overlap - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T16:18:15Zhttp://stackoverflow.com/feeds/question/684200http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/684200/synchronizing-a-timer-to-prevent-overlap1Synchronizing a timer to prevent overlapJoshRivers2009-03-26T01:33:32Z2009-03-26T06:11:09Z
<p>I'm writing a windows service that runs a variable length activity at intervals (a database scan and update). I need this task to run frequently, but the code to handle isn't safe to run multiple times concurrently.</p>
<p>How can I most simply set up a timer to run the task every 30 seconds while never overlapping executions? (I'm assuming System.Threading.Timer is the correct timer for this job, but could be mistaken).</p>
http://stackoverflow.com/questions/684200/synchronizing-a-timer-to-prevent-overlap/684208#6842084Answer by Reed Copsey for Synchronizing a timer to prevent overlapReed Copsey2009-03-26T01:36:50Z2009-03-26T01:36:50Z<p>You could do it with a Timer, but you would need to have some form of locking on your database scan and update. A simple <code>lock</code> to synchronize may be enough to prevent multiple runs from occurring.</p>
<p>That being said, it might be better to start a timer AFTER you're operation is complete, and just use it one time, then stop it. Restart it after your next operation. This would give you 30 seconds (or N seconds) between events, with no chance of overlaps, and no locking.</p>
http://stackoverflow.com/questions/684200/synchronizing-a-timer-to-prevent-overlap/684221#6842214Answer by jsw for Synchronizing a timer to prevent overlapjsw2009-03-26T01:43:59Z2009-03-26T01:43:59Z<p>I'd use Monitor.TryEnter in your elapsed code:</p>
<pre><code>if (Monitor.TryEnter(lockobj))
{
try
{
// we got the lock, do your work
}
finally
{
Monitor.Exit(lockobj);
}
}
else
{
// another elapsed has the lock
}
</code></pre>
http://stackoverflow.com/questions/684200/synchronizing-a-timer-to-prevent-overlap/684409#6844090Answer by SnOrfus for Synchronizing a timer to prevent overlapSnOrfus2009-03-26T03:24:24Z2009-03-26T03:24:24Z<p>instead of locking (which could cause all of your timed scans to wait and eventually stack up). You could start the scan/update in a thread and then just do a check to see if the thread is still alive.</p>
<pre><code>Thread updateDBThread = new Thread(MyUpdateMethod);
</code></pre>
<p>...</p>
<pre><code>private void timer_Elapsed(object sender, ElapsedEventArgs e)
{
if(!updateDBThread.IsAlive)
updateDBThread.Start();
}
</code></pre>
http://stackoverflow.com/questions/684200/synchronizing-a-timer-to-prevent-overlap/684452#6844520Answer by Jim Mischel for Synchronizing a timer to prevent overlapJim Mischel2009-03-26T03:48:37Z2009-03-26T06:11:09Z<p>I prefer <code>System.Threading.Timer</code> for things like this, because I don't have to go through the event handling mechanism:</p>
<pre><code>Timer UpdateTimer = new Timer(UpdateCallback, null, 30000, 30000);
object updateLock = new object();
void UpdateCallback(object state)
{
if (Monitor.TryEnter(updateLock))
{
try
{
// do stuff here
}
finally
{
Monitor.Exit(updateLock);
}
}
else
{
// previous timer tick took too long.
// so do nothing this time through.
}
}
</code></pre>
<p>You can eliminate the need for the lock by making the timer a one-shot and re-starting it after every update:</p>
<pre><code>// Initialize timer as a one-shot
Timer UpdateTimer = new Timer(UpdateCallback, null, 30000, Timeout.Infinite);
void UpdateCallback(object state)
{
// do stuff here
// re-enable the timer
UpdateTimer.Change(30000, Timeout.Infinite);
}
</code></pre>
http://stackoverflow.com/questions/684200/synchronizing-a-timer-to-prevent-overlap/684516#6845160Answer by grieve for Synchronizing a timer to prevent overlapgrieve2009-03-26T04:23:49Z2009-03-26T04:23:49Z<p>You could use the AutoResetEvent as follows:</p>
<pre><code>// Somewhere else in the code
using System;
using System.Threading;
// In the class or whever appropriate
static AutoResetEvent autoEvent = new AutoResetEvent(false);
void MyWorkerThread()
{
while(1)
{
// Wait for work method to signal.
if(autoEvent.WaitOne(30000, false))
{
// Signalled time to quit
return;
}
else
{
// grab a lock
// do the work
// Whatever...
}
}
}
</code></pre>
<p>A slightly "smarter" solution is as follow in pseudo-code:</p>
<pre><code>using System;
using System.Diagnostics;
using System.Threading;
// In the class or whever appropriate
static AutoResetEvent autoEvent = new AutoResetEvent(false);
void MyWorkerThread()
{
Stopwatch stopWatch = new Stopwatch();
TimeSpan Second30 = new TimeSpan(0,0,30);
TimeSpan SecondsZero = new TimeSpan(0);
TimeSpan waitTime = Second30 - SecondsZero;
TimeSpan interval;
while(1)
{
// Wait for work method to signal.
if(autoEvent.WaitOne(waitTime, false))
{
// Signalled time to quit
return;
}
else
{
stopWatch.Start();
// grab a lock
// do the work
// Whatever...
stopwatch.stop();
interval = stopwatch.Elapsed;
if (interval < Seconds30)
{
waitTime = Seconds30 - interval;
}
else
{
waitTime = SecondsZero;
}
}
}
}
</code></pre>
<p>Either of these has the advantage that you can shutdown the thread, just by signaling the event.</p>
<p><hr /></p>
<p><strong>Edit</strong></p>
<p>I should add, that this code makes the assumption that you only have one of these MyWorkerThreads() running, otherwise they would run concurrently.</p>