wx.StopWatch¶
The wx.StopWatch class allow you to measure time intervals.
For example, you may use it to measure the time elapsed by some function:
sw = wx.StopWatch()
CallLongRunningFunction()
wx.LogMessage("The long running function took %dms to execute", sw.Time())
sw.Pause()
# stopwatch is stopped now ...
sw.Resume()
CallLongRunningFunction()
wx.LogMessage("And calling it twice took %dms in all", sw.Time())
Since wxWidgets 2.9.3 this class uses QueryPerformanceCounter()
function under MSW to measure the elapsed time. It provides higher precision than the usual timer functions but can suffer from bugs in its implementation in some Windows XP versions. If you encounter such problems, installing a Microsoft hot fix from http://support.microsoft.com/?id=896256 could be necessary.
See also
Class Hierarchy¶
Methods Summary¶
Constructor. |
|
Pauses the stop watch. |
|
Resumes the stop watch which had been paused with |
|
(Re)starts the stop watch with a given initial value. |
|
Returns the time in milliseconds since the start (or restart) or the last call of |
|
Returns elapsed time in microseconds. |
Class API¶
- class wx.StopWatch(object)¶
Possible constructors:
StopWatch() -> None
The StopWatch class allow you to measure time intervals.
Methods¶
- __init__(self)¶
Constructor.
This starts the stop watch.
- Return type:
None
- Pause(self)¶
Pauses the stop watch.
Call
Resume
to resume time measuring again.If this method is called several times,
Resume
must be called the same number of times to really resume the stop watch. You may, however, callStart
to resume it unconditionally.- Return type:
None
- Start(self, milliseconds=0)¶
(Re)starts the stop watch with a given initial value.
The stopwatch will always be running after calling
Start
, even ifPause
had been called before and even if it had been called multiple times.- Parameters:
milliseconds (long)
- Return type:
None
- Time(self)¶
Returns the time in milliseconds since the start (or restart) or the last call of
Pause
.- Return type:
int
See also