class CTimer : public CActive |
Base class for a timer active object.
This is an active object that uses the asynchronous services provided by RTimer, to generate events. These events occur either at a specific time specified as a TTime, or after an interval specified in microseconds.
The RunL() virtual member function is called by the active scheduler after this event occurs.
To write a class derived from CTimer, first define and implement a constructor through which the priority of the CTimer active object can be specified. Then define and implement a suitable RunL() function to handle the completion of a timer request. This function is not defined by CTimer itself and must, therefore, be provided by the derived class.
This class is ultimately implemented in terms of the nanokernel tick, and therefore the granularity of the generated events is limited to the period of this timer. This is variant specific, but is usually 1 millisecond.
Note that the CPeriodic and CHeartbeat classes are derived from CTimer, and answer most timing needs.
Public Member Functions | |
---|---|
~CTimer() | |
IMPORT_C void | After(TTimeIntervalMicroSeconds32) |
IMPORT_C void | At(const TTime &) |
IMPORT_C void | AtUTC(const TTime &) |
IMPORT_C void | HighRes(TTimeIntervalMicroSeconds32) |
IMPORT_C void | Inactivity(TTimeIntervalSeconds) |
IMPORT_C void | Lock(TTimerLockSpec) |
Protected Member Functions | |
---|---|
CTimer(TInt) | |
IMPORT_C void | ConstructL() |
IMPORT_C void | DoCancel() |
Inherited Enumerations | |
---|---|
CActive:TPriority |
Private Attributes | |
---|---|
RTimer | iTimer |
Inherited Attributes | |
---|---|
CActive::iStatus |
IMPORT_C | CTimer | ( | TInt | aPriority | ) | [protected] |
Protected constructor with priority.
Use this constructor to set the priority of the active object.
Classes derived from CTimer must define and provide a constructor through which the priority of the active object can be passed. Such a constructor can call CTimer's constructor in its constructor initialisation list.
TInt aPriority | The priority of the timer. |
IMPORT_C | ~CTimer | ( | ) |
Destructor.
Frees resources prior to destruction. Specifically, it cancels any outstanding request and closes the RTimer handle.
IMPORT_C void | After | ( | TTimeIntervalMicroSeconds32 | anInterval | ) |
Requests an event after an interval.
This timer completes after the specified number of microseconds. The "after timer" counter stops during power-down. Therefore, a 5-second timer will complete late if the machine is turned off 2 seconds after the request is made.
Notes:
1. The CTimer's RunL() function will be run as soon as possible after the specified interval.
2. The RunL() may be delayed because the RunL() of another active object, with the deepest nesting-level active scheduler on the same thread, is running when the event occurs: this cannot be avoided, but can be minimised by making all RunL()s of short duration.
3. The RunL() may be delayed because other, higher-priority, active objects are scheduled instead. This can be avoided by making CTimers very high-priority.
TTimeIntervalMicroSeconds32 anInterval | Interval after which event is to occur, in microseconds. |
IMPORT_C void | At | ( | const TTime & | aTime | ) |
Requests an event at a given local time.
This timer completes at the specified time - if the machine is in a turned off state at that time, the machine will be turned on again.
Notes:
1. The CTimer' RunL() function will be run as soon as possible after the specified system time.
2. The RunL() may be delayed because the RunL() of another active object, with the deepest nesting-level active scheduler on the same thread, is running when the event occurs: this cannot be avoided, but can be minimised by making all RunL()s of short duration.
3. The RunL() may be delayed because other, higher-priority, active objects are scheduled instead. This can be avoided by making CTimers very high-priority.
4. The TTime object should be set to the home time.
const TTime & aTime | The local time at which the event is to occur. |
IMPORT_C void | AtUTC | ( | const TTime & | aTimeInUTC | ) |
Requests an event at a given UTC time.
This timer completes at the specified time - if the machine is in a turned off state at that time, the machine will be turned on again.
Notes:
1. The CTimer' RunL() function will be run as soon as possible after the specified system time.
2. The RunL() may be delayed because the RunL() of another active object, with the deepest nesting-level active scheduler on the same thread, is running when the event occurs: this cannot be avoided, but can be minimised by making all RunL()s of short duration.
3. The RunL() may be delayed because other, higher-priority, active objects are scheduled instead. This can be avoided by making CTimers very high-priority.
4. The TTime object should be set to the universal time.
const TTime & aTimeInUTC |
IMPORT_C void | ConstructL | ( | ) | [protected] |
Constructs a new asynchronous timer.
The function must be called before any timer requests (i.e. calls to RTimer::After() or RTimer::At()) can be made.
Since it is protected, it cannot be called directly by clients of CTimer derived classes. Typically, a derived class makes a base call to this function in the second phase of two-phase construction; i.e. the derived class defines and implements its own ConstructL() function within which it makes a base call to CTimer::ConstructL().
IMPORT_C void | DoCancel | ( | ) | [protected, virtual] |
Implements cancellation of an outstanding request.
This function is called as part of the active object's Cancel().
It must call the appropriate cancel function offered by the active object's asynchronous service provider. The asynchronous service provider's cancel is expected to act immediately.
DoCancel() must not wait for event completion; this is handled by Cancel().
IMPORT_C void | HighRes | ( | TTimeIntervalMicroSeconds32 | aInterval | ) |
Requests an event after the specified interval to a resolution of 1ms. The "HighRes timer" counter stops during power-down (the same as "after timer").
TTimeIntervalMicroSeconds32 aInterval | The time interval, in microseconds, after which an event is to occur. |
IMPORT_C void | Inactivity | ( | TTimeIntervalSeconds | aSeconds | ) |
Requests an event if no activity occurs within the specified interval.
TTimeIntervalSeconds aSeconds | The time interval. |
IMPORT_C void | Lock | ( | TTimerLockSpec | aLock | ) |
Requests an event on a specified second fraction.
Note that the RunL() function is run exactly on the specified second fraction.
TTimerLockSpec aLock | The fraction of a second at which the timer completes. |
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.