Location:
e32base.h
Link against: euser.lib
CPeriodic
Supported from 5.0
Periodic timer active object. This class generates regular timer
events and handles them with a callback function. The callback is specified as
a parameter to Start()
.
Timer Accuracy:
The callback may not be called immediately after the signal from the timer request has been generated, for the following reasons:
the RunL()
of another active object may be running
at the time of the signal
other active objects may have a higher priority than the
CPeriodic
If timing accuracy is important to your application, you can
minimise the first problem by ensuring all RunL()
s complete
quickly, and can eliminate the second by giving the CPeriodic
a
higher priority than any other active object. Although it is generally
recommended that timer-related active objects have a high priority, this will
not address the problem of CPeriodic
timers running behind,
because active object scheduling is not pre-emptive.
After a timer signal generated by a CPeriodic
, the
next signal is requested just before running the callback, and this request can
be delayed for the same reasons that running the callback can be delayed.
Therefore, a large number N of periods may add up to somewhat more than N times
the requested period time. If absolute precision is required in tracking time,
do not rely on counting the number of times the callback is called: read the
value of the system clock every time you need it.
For many applications, such precision is not required — for instance, tick counting is sufficiently accurate for controlling time-outs in a communications program.
Note:
You should be familiar with CActive
in order to
understand CPeriodic
behaviour, but not necessarily with
CTimer
.
|
Defined in CPeriodic
:
CPeriodic()
, New()
, NewL()
, Start()
, ~CPeriodic()
Inherited from CActive
:
Cancel()
,
Deque()
,
DoCancel()
,
EPriorityHigh
,
EPriorityIdle
,
EPriorityLow
,
EPriorityStandard
,
EPriorityUserInput
,
IsActive()
,
IsAdded()
,
Priority()
,
RunError()
,
RunL()
,
SetActive()
,
SetPriority()
,
TPriority
,
iStatus
Inherited from CBase
:
operator new()
Inherited from CTimer
:
After()
,
At()
,
ConstructL()
,
Inactivity()
,
Lock()
static CPeriodic* New(TInt aPriority);
Allocates and constructs a CPeriodic
object — non-leaving.
Note:
Specify a high priority so the callback function is scheduled as soon as possible after the timer events complete.
|
|
static CPeriodic* NewL(TInt aPriority);
Allocates and constructs a CPeriodic
object — leaving.
Note:
Specify a high priority so the callback function is scheduled as soon as possible after the timer events complete.
|
|
|
protected: CPeriodic(TInt aPriority);
Protected constructor with priority. Use this constructor to set the priority of the active object.
Classes derived from CPeriodic
must define and
provide a constructor through which the priority of the active object can be
passed. Such a constructor can call CPeriodic
's constructor in its
constructor initialisation list.
|
void Start(TTimeIntervalMicroSeconds32 aDelay,TTimeIntervalMicroSeconds32 anInterval,TCallBack aCallBack);
Starts generating periodic events. The event calls the
protected RunL()
function, which in turn calls the function
specified by aCallBack
. The first event is generated after
aDelay
microseconds; subsequent events are generated regularly
thereafter at intervals of anInterval
microseconds.
The TCallBack
contains a function pointer and a
TAny*
pointer. The function will be repeatedly called with the
pointer as a parameter.
Once started, periodic events are generated until the
CPeriodic
object is destroyed.
Notes:
The callback function will be run as soon as possible after the initial delay, and after each period.
The callback 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.
The callback may be delayed because other, higher-priority,
active objects are scheduled instead. This can be avoided by giving the
CPeriodic
a very high priority.
|