bi01081993 / ncron

Automatically exported from code.google.com/p/ncron
Apache License 2.0
0 stars 0 forks source link

Patch for /trunk/src/NCron/Service/SchedulingService.cs #19

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
//Prevent a below zero timeToNext
                //_timer.Change((long) timeToNext.TotalMilliseconds, Timeout.Infinite);
                if (timeToNext.TotalMilliseconds > 0)
                    _timer.Change((long)timeToNext.TotalMilliseconds, Timeout.Infinite);
                else
                    _timer.Change((long)0, Timeout.Infinite);

Original issue reported on code.google.com by marcosou...@gmail.com on 20 Jan 2011 at 10:05

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by jsr%mala...@gtempaccount.com on 14 Feb 2011 at 8:56