createRealTimeTimer

This method creates a real-time timer.

Every tick time, the timer calls TimerManagerCallBack(callBackParams).

This method returns a handle to the timer, so it can be deleted when the timer manager is destroyed.

Visibility
Public
Signature
virtual OMOSTimer* createRealTimeTimer(timeUnit tickTime, 
   TimerManagerCallBack, void* callBackParams) const =0;
Parameters
tickTime

Specifies the tick time.

TimerManagerCallBack

The call to the callback function. The callback is called every tick time.

callBackParams

Specifies the parameters for the callback function.

Returns

The OMOSTimer


Feedback