Location:
e32base.h
Link against: euser.lib
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.
CBase
- Base class for all classes to be instantiated on the heap
CActive
- The core class of the active object abstraction
CTimer
- Base class for a timer active object
Defined in CTimer
:
After()
, At()
, AtUTC()
, CTimer()
, ConstructL()
, DoCancel()
, HighRes()
, Inactivity()
, Lock()
, ~CTimer()
Inherited from CActive
:
Cancel()
,
Deque()
,
EPriorityHigh
,
EPriorityIdle
,
EPriorityLow
,
EPriorityStandard
,
EPriorityUserInput
,
Extension_()
,
IsActive()
,
IsAdded()
,
Priority()
,
RunError()
,
RunL()
,
SetActive()
,
SetPriority()
,
TPriority
,
iStatus
Inherited from CBase
:
Delete()
,
operator new()
IMPORT_C ~CTimer();
Destructor.
Frees resources prior to destruction. Specifically, it cancels any outstanding request and closes the RTimer
handle.
protected: IMPORT_C CTimer(TInt aPriority);
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.
|
protected: IMPORT_C void ConstructL();
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 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.
|
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.
|
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.
|
|
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.
|
IMPORT_C void Inactivity(TTimeIntervalSeconds aSeconds);
Requests an event if no activity occurs within the specified interval.
|
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").
|
|
protected: virtual IMPORT_C void DoCancel();
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()
.