Timer is a control that has the functionality to trigger a user defined action at regular intervals as configured by the user.
226
votes
13answers
18k views
Is DateTime.Now the best way to measure a function's performance?
I need to find a bottleneck and need to accurately as possible measure time.
Is the following code snippet the best way to measure the performance?
DateTime startTime = DateTime.Now;
// Some ...
160
votes
2answers
78k views
System.Timers.Timer vs System.Threading.Timer
I have been checking out some of the possible timers lately, and the Threading.Timer and Timers.Timer are the ones that look needful to me (since they support thread pooling).
I am making a game, ...
77
votes
5answers
24k views
Java Timer vs ExecutorService?
I have code where I schedule a task using java.util.timer. I was looking around and saw ExecutorService can do the same. So this question here, have you used Timer and ExecutorService to schedule ...
73
votes
8answers
69k views
System.currentTimeMillis vs System.nanoTime
Accuracy Vs. Precision
What I would like to know is whether I should use System.currentTimeMillis() or System.nanoTime() when updating my object's positions in my game? Their change in movement is ...
66
votes
13answers
139k views
C++ obtaining milliseconds time on Linux — clock() doesn't seem to work properly
On Windows, clock() returns the time in milliseconds, but on this Linux box I'm working on, it rounds it to the nearest 1000 so the precision is only to the "second" level and not to the milliseconds ...
56
votes
11answers
39k views
How to timeout a thread
I want to run a thread for some fixed amount of time. If it is not completed within that time, I want to either kill it, throw some exception, or handle it in some way. How can it be done?
One way of ...
53
votes
4answers
32k views
What's the easiest way to call a function every 5 seconds in jQuery?
I'm looking to automate the changing of images in a slideshow. I'd rather not install any 3rd party plugins if possible.
Thanks.
46
votes
13answers
87k views
C++ Timer function to provide time in nano seconds
I wish to calculate the time it took for an API to return a value.
The time taken for such an action is in the space of nano seconds. As the API is a C++ class/function, I am using the timer.h to ...
45
votes
4answers
33k views
How do I get my python program to sleep for 50 msec?
How do I get my python program to sleep for 50 msec?
44
votes
10answers
24k views
Is gettimeofday() guaranteed to be of microsecond resolution?
So I find myself porting a game, that was originally written for the Win32 API, to Linux (well, porting the OS X port of the Win32 port to Linux). I have implemented QueryPerformanceCounter by giving ...
40
votes
6answers
15k views
How to access the HttpServerUtility.MapPath method in a Thread or Timer?
I use a System.Timers.Timer in my Asp.Net application and I need to use the HttpServerUtility.MapPath method which seems to be only available via HttpContext.Current.Server.MapPath.
The problem is ...
38
votes
7answers
39k views
How to reset a timer in C#?
There are three Timer classes that I am aware of, System.Threading.Timer, System.Timers.Timer, and System.Windows.Forms.Timer, but none of these have a .Reset() function which would reset the current ...
38
votes
7answers
4k views
Can Stopwatch be used in production code?
I need an accurate timer, and DateTime.Now seems not accurate enough. From the descriptions I read, System.Diagnostics.Stopwatch seems to be exactly what I want.
But I have a phobia. I'm nervous ...
38
votes
4answers
35k views
Timer & TimerTask versus Thread + sleep in Java
I found similar questions asked here but there weren't answers to my satisfaction. So rephrasing the question again-
I have a task that needs to be done on a periodic basis (say 1 minute intervals). ...
37
votes
9answers
52k views
Android timer? How?
Can someone get a simple example of updating textfield every second or so?
Thanks.
i want to make flying ball and need to calculate ball`s coordinates every second, thats why i need some sort of ...
35
votes
2answers
22k views
33
votes
11answers
50k views
C# Timer or Thread.Sleep
I am running a windows service and using a loop and Thread.Sleep to repeat a task, would it be better to use a timer method?
If yes a code example would be great
I am currently using this code to ...
31
votes
4answers
8k views
System.Timers.Timer/Threading.Timer vs Thread with WhileLoop + Thread.Sleep For Periodic Tasks
In my application I have to send periodic heartbeats to a "brother" application.
Is this better accomplished with System.Timers.Timer/Threading.Timer or Using a Thread with a while loop and a ...
30
votes
4answers
38k views
How to use QueryPerformanceCounter?
I recently decided that I needed to change from using milliseconds to microseconds for my Timer class, and after some research I've decided that QueryPerformanceCounter is probably my safest bet. (The ...
30
votes
7answers
39k views
Get timer ticks in Python
I'm just trying to time a piece of code. The pseudocode looks like:
start = get_ticks()
do_long_code()
print "It took " + (get_ticks() - start) + " seconds."
How does this look in Python?
More ...
29
votes
6answers
57k views
Code for a simple JavaScript countdown timer? [closed]
I want to use a simple countdown timer starting at 30 seconds from when the function is run and ending at 0. No milliseconds. How can it be coded?
29
votes
6answers
39k views
High resolution timer with C++ and Linux?
Under Windows there are some handy functions like QueryPerformanceCounter from mmsystem.h to create a high resolution timer.
Is there something similar for Linux?
28
votes
3answers
2k views
Why does a System.Timers.Timer survive GC but not System.Threading.Timer?
It appears that System.Timers.Timer instances are kept alive by some mechanism, but System.Threading.Timer instances are not.
Sample program, with a periodic System.Threading.Timer and auto-reset ...
27
votes
12answers
9k views
Is there a more accurate way to create a Javascript timer than setTimeout?
Something that has always bugged me is how unpredictable the setTimeout() method in Javascript is.
In my experience, the timer is horribly inaccurate in a lot of situations. By inaccurate, I mean the ...
27
votes
3answers
54k views
Android - Controlling a task with Timer and TimerTask?
I am currently trying to set up a WiFi Scan in my Android application that scans for WiFi access points every 30 seconds.
I have used Timer and TimerTask to get the scan running correctly at the ...
24
votes
1answer
19k views
How Do I write a Timer in Objective-C?
I am trying to make a stop watch with NSTimer.
I gave the following code:
nst_Timer = [NSTimer scheduledTimerWithTimeInterval:0.001 target:self selector:@selector(showTime) userInfo:nil ...
24
votes
2answers
16k views
Comparing Timer with DispatcherTimer
what is a difference between System.Windows.Forms.Timer() and System.Windows.Threading.DispatcherTimer() ? In which cases, we should use them? any best practices ?
23
votes
4answers
7k views
High resolution timer in .NET
I'd like to do some basic profiling of my code, but found that the DateTime.Now in C# only have a resolution of about 16 ms. There must be better time keeping constructs that I haven't yet found.
23
votes
5answers
16k views
Changing the interval of SetInterval while it's running
I have written a javascript function that uses setInterval to manipulate a string every tenth of a second for a certain number of iterations.
function timer() {
var section = ...
22
votes
5answers
55k views
How do you add a timer to a C# console application
Just this - How do you add a timer to a C# console application? It would be great if you could supply some example coding.
22
votes
7answers
25k views
Compare using Thread.Sleep and Timer for delayed execution
I have a method which should be delayed running for a specified amount of time.
Should I use
Thread thread = new Thread(() => {
Thread.Sleep(millisecond);
action();
});
...
20
votes
4answers
18k views
Do C# Timers elapse on a separate thread?
Does a System.Timers.Timer elapse on a separate thread than the thread that created it?
Lets say I have a class with a timer that fires every 5 seconds. When the timer fires, in the elapsed method, ...
20
votes
2answers
3k views
Reliable timer in a console application
I am aware that in .NET there are three timer types (see Comparing the Timer Classes in the .NET Framework Class Library). I have chosen a threaded timer as the other types can drift if the main ...
20
votes
2answers
5k views
Why are .NET timers limited to 15 ms resolution?
Note that I'm asking about something that will call a callback function more often than once every 15 ms using something like System.Threading.Timer. I'm not asking about how to accurately time a ...
19
votes
11answers
16k views
C++ Cross-Platform High-Resolution Timer
I'm looking to implement a simple timer mechanism in C++. The code should work in Windows and Linux. The resolution should be as precise as possible (at least millisecond accuracy). This will be used ...
18
votes
5answers
9k views
How to time an operation in milliseconds in Ruby?
I'm wishing to figure out how many milliseconds a particular function uses. So I looked high and low, but could not find a way to get the time in Ruby with millisecond precision.
How do you do this? ...
17
votes
4answers
33k views
(jQuery) javascript setTimeout clearTimeout
I try to make a page to go to the startpage after eg. 10sec of inactivity (user not clicking anywhere). I use jQuery for the rest but the set/clear in my test function are pure javascript.
In my ...
17
votes
5answers
7k views
Best timing method in C?
What is the best way to time a code section with high resolution and portability?
/* Time from here */
ProcessIntenseFunction();
/* to here. */
printf("Time taken %d seconds %d milliseconds", sec, ...
17
votes
1answer
23k views
Jquery/Ajax call with timer
I was wondering if someone could help me out. I have a php page that echos out rows from a database. I want to call it via jquery/ajax every 30 seconds. But I also want to be able to call the page at ...
16
votes
5answers
12k views
How do I calculate the elapsed time of an event in java?
What's a simple/easy way to access the system clock using Java, so that I can calculate the elapsed time of an event?
16
votes
5answers
16k views
Is there a Timer class in C# that isn't in the Windows.Forms namespace?
I want to use a timer in my simple .Net application written in C#. The only one I can find is the Windows.Forms.Timer class. I don't want to reference this namespace just for my console app.
Is ...
16
votes
3answers
7k views
High-Performance Timer vs StopWatch
Does anyone know if the HiPerfTimer or the StopWatch class is better for benchmarking, and why?
15
votes
7answers
9k views
Is it necessary to dispose System.Timers.Timer if you use one in your application?
I am using System.Timers.Timer class in one of the classes in my application.
I know that Timer class has Dispose method inherited from the parent Component class that implements IDisposable ...
15
votes
11answers
14k views
1ms resolution timer under linux recommended way
I need a timer tick with 1ms resolution under linux. It is used to increment a timer value that in turn is used to see if various Events should be triggered. The POSIX timerfd_create is not an option ...
15
votes
4answers
6k views
How scalable is System.Threading.Timer?
I'm writing an app that will need to make use of Timers, but potentially very many of them. How scalable is the System.Threading.Timer class? The documentation merely say it's "lightweight", but ...
15
votes
1answer
8k views
What is mach_absolute_time based on on iPhone
I use this code to keep track of last reboot:
+ (float) secondsSinceLastReboot{
return ((float)(mach_absolute_time())) * ((float)timebase.numer) / ((float)timebase.denom) / 1000000000.0f;
}
I ...
15
votes
2answers
993 views
How System.Timers.Timer behave in WPF application, after Hibernate, and Sleep?
I'm using System.Timers.Timer in my WPF application. I want to understand how Timer does behave, after Computer is hibernated, and sleep. I'm getting some weird issues with my application, after ...
14
votes
4answers
26k views
How to create a JQuery Clock / Timer
I have a simple quiz application and I want display a nice timer / clock at the top of the page which shows the user how long they've been going for. (If I could somehow show them a timer for Total ...
14
votes
2answers
4k views
Is it OK to call clearInterval inside a setInterval handler?
I have a piece of Javascript that checks for a condition (via an AJAX call) every n seconds. If that condition is true, it stops checking. I have implemented it in the following way:
var stopTimer;
...
14
votes
5answers
9k views
Why doesn't my Service work in Android? (I just want to log something ever 5 seconds)
I created a new class called HelloService.
I added this to the Android manifest.xml.
public class HelloService extends Service {
private Timer timer = new Timer();
private long INTERVAL = ...
