Tagged Questions

0
votes
4answers
70 views

Cancelling a Timer

I have implemented a token system which assigns a fixed number of tokens. Each token on assignment starts up a Timer which expires after a few number of minutes and clears that token slot for reuse. …
0
votes
3answers
50 views

How to handle mass database manipulation every second - threading?

Hi guys, I have a very hard problem: I have round about 20-50 objects, which I MUST (that is given for the problem, please don't spend time in thinking around it) put througt a logic EVERY SECOND. …
2
votes
2answers
39 views

What might cause OpenGL to behave differently under the “Start Debugging” versus “Start without debugging” options?

I have written a 3D-Stereo OpenGL program in C++. I keep track of the position objects in my display should have using timeGetTime after a timeBeginPeriod(1). When I run the program with "Start …
1
vote
6answers
101 views

Most suitable .net Timer for a scheduler

We've identified a hotspot in our code using CCR timers. It appears that if we enqueue many thousands of timers that the code suffers terminal slowdown. The fix is to choose the soonest scheduled …
1
vote
5answers
138 views

How do I wait for a TTimer to finish?

I have a TFrame (fraDisplay) with a TTimer (timAnimateDataChange). The timer is used to control a small animation. In the form containing the frame I want to have a method that does something like …
0
votes
4answers
31 views

Keep track of number of events per timespan

What's the best way, in C# to keep track of the number of events per timespan? For example, I want to limit my TCP application to, say, a maximum of 10 requests per minute before setting a flag. The …
1
vote
1answer
35 views

Continuously redraw wxPython element

Hi, I have a chat client that continuously polls a server and fetches new messages. From my def __init__() I have: wx.CallAfter(self.pollServer) Which is defined: def pollServer(self): t = …
1
vote
3answers
42 views

How can I reveal content and maintain its visibility when mousing to a child element?

I'm asking a question very similar to this one—dare I say identical? An example is currently in the bottom navigation on this page. I'm looking to display the name and link of the next and previous …
0
votes
1answer
29 views

Database query and countdown with Ajax in ASP.Net ~ Hard Problem

Hi guys, I asked a several time but must ask again, beacuse I don't know what to do: On my Page I have an auctioneer system. Every second I must: Get Information if any bidder bid on it -> …
1
vote
2answers
78 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. …
1
vote
3answers
43 views

what is the right way to call the Timer ElapsedEventHandler

i have a timer that calls its even handler method every 30 seconds. but i want to initialy call this method. the signature of the event handler method is void TimerElapsed_GenerateRunTimes(object …
0
votes
1answer
12 views

Which Timer object should I use in long running processes in .Net?

Which Timer object should I use in long running processes in .Net? The timer will be used in a Windows Service, and I wish to find the best fit performance wise.
0
votes
1answer
23 views

How to tell if an ajax timer has gone off at page_load

Hello, I have a web application and I'm attempting to put an ajax timer control in it to give me a post back every 10-20 seconds. (possibly longer depending on performance). I have a lot of …
0
votes
1answer
26 views

What is the clock source for the count returned by QueryPerfomanceCounter

I was under the impression that QueryPerformanceCounter was actually accessing the counter that feeds the HPET (High Performance Event Timer)---the difference of course being that HPET is a timer …
78
votes
13answers
4k 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 …

1 2 3 4 5 12 next
15 30 50 per page