Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <e32base.h>
Link against: euser.lib

Class CTimer

class CTimer : public CActive;

Description

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 CActive::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 CActive::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.

Derivation

Members

Defined in CTimer:

Inherited from CActive:

Inherited from CBase:


Construction and destruction


~CTimer()

IMPORT_C ~CTimer();

Description

Destructor.

Frees resources prior to destruction. Specifically, it cancels any outstanding request and closes the RTimer handle.


CTimer(TInt)

protected: IMPORT_C CTimer(TInt aPriority);

Description

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.

Parameters

TInt aPriority

The priority of the timer.


ConstructL()

protected: IMPORT_C void ConstructL();

Description

Constructs a new asynchronous timer.

The function must be called before any timer requests (i.e. calls to RTimer::After(TRequestStatus &,TTimeIntervalMicroSeconds32) or RTimer::At(TRequestStatus &,const TTime &)) 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 CTimer::ConstructL() function within which it makes a base call to CTimer::ConstructL().

[Top]


Member functions


At(const TTime &)

IMPORT_C void At(const TTime &aTime);

Description

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' CActive::RunL() function will be run as soon as possible after the specified system time.

2. The CActive::RunL() may be delayed because the CActive::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 CActive::RunL()s of short duration.

3. The CActive::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.

Parameters

const TTime &aTime

The local time at which the event is to occur.

See also:


AtUTC(const TTime &)

IMPORT_C void AtUTC(const TTime &aTimeInUTC);

Description

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' CActive::RunL() function will be run as soon as possible after the specified system time.

2. The CActive::RunL() may be delayed because the CActive::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 CActive::RunL()s of short duration.

3. The CActive::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.

Parameters

const TTime &aTimeInUTC

See also:


After(TTimeIntervalMicroSeconds32)

IMPORT_C void After(TTimeIntervalMicroSeconds32 anInterval);

Description

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 CActive::RunL() function will be run as soon as possible after the specified interval.

2. The CActive::RunL() may be delayed because the CActive::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 CActive::RunL()s of short duration.

3. The CActive::RunL() may be delayed because other, higher-priority, active objects are scheduled instead. This can be avoided by making CTimers very high-priority.

Parameters

TTimeIntervalMicroSeconds32 anInterval

Interval after which event is to occur, in microseconds.

Panic codes

USER

87, if anInterval is negative. This is raised by the underlying RTimer.

E32USER-CBase

51, if the active object has not been added to an active scheduler.


Lock(TTimerLockSpec)

IMPORT_C void Lock(TTimerLockSpec aLock);

Description

Requests an event on a specified second fraction.

Note that the CActive::RunL() function is run exactly on the specified second fraction.

Parameters

TTimerLockSpec aLock

The fraction of a second at which the timer completes.


Inactivity(TTimeIntervalSeconds)

IMPORT_C void Inactivity(TTimeIntervalSeconds aSeconds);

Description

Requests an event if no activity occurs within the specified interval.

Parameters

TTimeIntervalSeconds aSeconds

The time interval.


HighRes(TTimeIntervalMicroSeconds32)

IMPORT_C void HighRes(TTimeIntervalMicroSeconds32 aInterval);

Description

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").

Parameters

TTimeIntervalMicroSeconds32 aInterval

The time interval, in microseconds, after which an event is to occur.

Panic codes

USER

87, if anInterval is negative. This is raised by the underlying RTimer.

KERN-EXEC

15, if this function is called while a request for a timer event is still outstanding.


DoCancel()

protected: IMPORT_C virtual void DoCancel();

Description

Implements cancellation of an outstanding request.

This function is called as part of the active object's CActive::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.

CTimer::DoCancel() must not wait for event completion; this is handled by CActive::Cancel().

See also: