1#ifndef Cpl_Dm_PeriodicScheduler_h_
2#define Cpl_Dm_PeriodicScheduler_h_
61 Hook_T beginThreadProcessing =
nullptr,
62 Hook_T endThreadProcessing =
nullptr,
#define OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD
Specifies the default timeout period for waiting on a event.
Definition EventLoop.h:26
This class extends the Cpl::Dm::EventLoop and Cpl::Itc:Mailbox classes to support the asynchronous ch...
Definition MailboxServer.h:43
This class extends the Cpl::Dm::MailboxServer class to add periodic scheduling to an event based 'thr...
Definition PeriodicScheduler.h:47
void appRun()
See Cpl::System::Runnable.
PeriodicScheduler(Interval_T intervals[], Hook_T beginThreadProcessing=nullptr, Hook_T endThreadProcessing=nullptr, ReportSlippageFunc_T slippageFunc=nullptr, NowFunc_T nowFunc=Cpl::System::ElapsedTime::precision, IdleFunc_T idleFunc=nullptr, unsigned long timingTickInMsec=OPTION_CPL_SYSTEM_EVENT_LOOP_TIMEOUT_PERIOD, Cpl::System::SharedEventHandlerApi *eventHandler=0) noexcept
Constructor.
IdleFunc_T m_idleFunc
Cache the Idle function pointer.
Definition PeriodicScheduler.h:75
void(* IdleFunc_T)(Cpl::System::ElapsedTime::Precision_T currentTick, bool atLeastOneIntervalExecuted)
Defines an optional method that is called every time the Runnable's object executes its event/schedul...
Definition PeriodicScheduler.h:52
static Precision_T precision() noexcept
This method returns the elapsed time, in seconds with milliseconds precision, since the system was po...
This concrete class is a 'policy' object that is used to add polled based, cooperative monotonic sche...
Definition PeriodicScheduler.h:48
ElapsedTime::Precision_T(* NowFunc_T)()
Defines the function that returns current system.
Definition PeriodicScheduler.h:125
void(* ReportSlippageFunc_T)(Interval_T &intervalThatSlipped, ElapsedTime::Precision_T currentTick, ElapsedTime::Precision_T missedInterval)
Defines the method that is used to report to the Application when an Interval does not execute 'on ti...
Definition PeriodicScheduler.h:115
void(* Hook_T)(ElapsedTime::Precision_T currentTick)
Defines the optional functions that are used to provide hooks during startup/shutdown of the thread/l...
Definition PeriodicScheduler.h:131
This abstract class defines the interface for a Shared Event Handler.
Definition SharedEventHandler.h:30
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
Data type for time in seconds with a 'fractional' millisecond precision.
Definition ElapsedTime.h:35
Defines an interval.
Definition PeriodicScheduler.h:76