The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
28 views

Java - Is this the correct implementation of a timer/timertask to destroy a process that overruns a defined time limit

I was wondering if this is the correct implementation of a times task to destroy a thread after it overruns a predefined time period: it works by creating a getting the thread from ...
-1
votes
1answer
60 views

arduino timer to print array of serial data at specific intervals, syntax problem [closed]

I was wondering if you guys could help me solve an arduino Coding problem. I've simplified the code to highlight the issue that I'm having. I've created a program to read streaming serial data to an ...
3
votes
2answers
354 views

Timer Tick Event only to execute at specific time

I have a timer that is only supposed to tick between x and x on weekdays. I have used the following implementation. void tmrMain_Tick(object sender, EventArgs e) { if ...
2
votes
0answers
503 views

The correct (and safe) way to use a Timer to poll a Delegate

This is a followup to Polling loop to run in a background thread where I was initially using a single thread and Thread.Sleep() to poll a delegate. I was recommended to use a timer and the ThreadPool ...
1
vote
1answer
103 views

Timed series of events. Logic for organizing events based on time?

I would like to execute a series of events at the time at which they occur. The events are stored in a list and always sorted by time of execution. ...
1
vote
1answer
178 views

Timer implementation

I have a Visual Studio 2008 C++03 project where I need a timer. I have an implementation that works well, but I'd like any general suggestions from the community on how to improve it. (More generic, ...
1
vote
1answer
166 views

Timer wrapper review

I used this code in several projects. But I am not sure if it is stable. However on production it is working well, but I want to listen your advices: /// <summary> /// Standard abstract parent ...