Timer is a control that has the functionality to trigger an user defined action at regular intervals as configured by the user.

learn more… | top users | synonyms (1)

166
votes
14answers
10k 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 ...
57
votes
2answers
27k 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, ...
36
votes
12answers
82k 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 ...
33
votes
9answers
15k 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), and have implemented QueryPerformanceCounter by giving ...
28
votes
7answers
1k 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 ...
24
votes
7answers
30k 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 ...
20
votes
6answers
21k 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 ...
19
votes
9answers
8k 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 ...
18
votes
3answers
728 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 ...
18
votes
4answers
3k 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 ...
18
votes
4answers
3k 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.
17
votes
9answers
45k 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 ...
17
votes
6answers
8k 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 ...
15
votes
1answer
7k 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 ?
15
votes
9answers
24k 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 ...
15
votes
8answers
18k 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 ...
14
votes
6answers
22k 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?
14
votes
9answers
4k 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 ...
13
votes
2answers
159 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 ...
13
votes
10answers
8k 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 ...
13
votes
5answers
12k 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 ...
12
votes
5answers
6k 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 = ...
12
votes
2answers
25k 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 ...
12
votes
4answers
8k 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, ...
12
votes
7answers
12k 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(); }); ...
11
votes
4answers
12k 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 best. ...
11
votes
4answers
12k 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). ...
10
votes
6answers
289 views

Best way to do a timer in UNIX

I always notice people have different reactions to different ways of creating a timer in UNIX. I know a few different ways that I could make an event execute every X seconds within UNIX: you can do ...
10
votes
1answer
1k 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 ...
10
votes
2answers
2k views

Reliable Timer in a Console Application

I am aware in .net there are three timer types (see http://msdn.microsoft.com/en-us/magazine/cc164015.aspx). I have chosen a the threaded timer as the other types can drift if the main thread is busy ...
9
votes
4answers
241 views

Python: Alternating functions every x minutes

Say if I have four functions as below: def foo(): subprocess.Popen('start /B someprogramA.exe', shell=True) def bar(): subprocess.Popen('start /B someprogramB.exe', shell=True) def ...
9
votes
3answers
551 views

BackgroundWorker & Timer, reading only new lines of a log file?

My application writes a log file (currently using log4net). I'd like to setup a timer and a background worker to read the log file and print its content into some control in my form, while it's being ...
9
votes
3answers
707 views

How do I get the Exception that happens in Timer Elapsed event?

I'm working with Windows Forms application and hava a manager class that uses System.Timers.Timer to periodly check data from database. How do I get the Exception that occurs in timer Elapsed ...
9
votes
3answers
5k 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.
9
votes
11answers
6k 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 ...
9
votes
4answers
4k 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 = ...
9
votes
7answers
1k views

How do you unit test classes that use timers internally?

Like it or not, occasionally you have have to write tests for classes that make internal use of timers. Say for example a class that takes reports of system availability and raises an event if the ...
9
votes
5answers
7k views

WPF .NET Best way to trigger an event every minute

I have an app that needs to check a database table every minute. The table is indexed by the time of day and so the app needs to run this check every minute. What's the best of way of doing this? I ...
9
votes
7answers
5k 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 ...
9
votes
10answers
3k views

C# Why are timer frequencies extremely off?

Both System.Timers.Timer and System.Threading.Timer fire at intervals that are considerable different from the requested ones. For example: new System.Timers.Timer(1000d / 20); yields a timer that ...
9
votes
8answers
3k views

.NET Windows Service with timer stops responding

I have a windows service written in c#. It has a timer inside, which fires some functions on a regular basis. So the skeleton of my service: public partial class ArchiveService : ServiceBase { ...
9
votes
2answers
973 views

Does Linux provide a monotonically increasing clock to applications

Does Linux/Unix/Posix provide an API to user-space applications to access a monotonically increasing clock, with centisecond to millisecond accuracy? On Linux, /proc/uptime provides a string-based ...
9
votes
6answers
3k 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 ...
8
votes
2answers
151 views

How to find source of Timer thread?

I have a big project that also use many libraries. With jstack I found that there are threads like: Timer-2, Timer-3, Timer-4.... and all that jstack can me display is: java.lang.Thread.State: ...
8
votes
4answers
95 views

What is the expected behavior of a locally scoped Timer?

Specifically, if you create an instance of a Timer in the local scope, and then return from that scope: 1) Will the timer still execute? 2) When would it be garbage collected? I offer these two ...
8
votes
3answers
354 views

How can we count the time of process?

I have a problem. I created a PopupPanel and have shown it. Now the problem is i want to hide it after 1 minute. Can u suggest me, Please........ But one more thing, In that one minute process should ...
8
votes
1answer
6k 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 ...
8
votes
7answers
4k views

C# - Alternative to System.Timers.Timer, to call a function at a specific time

I want to call a specific function on my C# application at a specific time. At first I thought about using a Timer (System.Time.Timer), but that soon became impossible to use. Why? Simple. The Timer ...
8
votes
3answers
1k views

Calculating number of seconds between two points in time, in Cocoa, even when system clock has changed mid-way

I'm writing a Cocoa OS X (Leopard 10.5+) end-user program that's using timestamps to calculate statistics for how long something is being displayed on the screen. Time is calculated periodically ...
8
votes
3answers
2k views

High-Performance Timer vs StopWatch

Does anyone know if the HiPerfTimer or the StopWatch class is better for benchmarking, and why?

1 2 3 4 5 53