docs
This commit is contained in:
parent
2aac28e107
commit
a235e7bfc1
|
@ -24,10 +24,17 @@ public:
|
|||
#if !EFI_UNIT_TEST
|
||||
virtual_timer_t timer;
|
||||
#endif /* EFI_UNIT_TEST */
|
||||
virtual int getPeriodMs() = 0;
|
||||
|
||||
virtual void PeriodicTask() = 0;
|
||||
|
||||
/**
|
||||
* This method is invoked after corresponding PeriodicTask() invocation
|
||||
*/
|
||||
virtual int getPeriodMs() = 0;
|
||||
|
||||
/**
|
||||
* This invokes PeriodicTask() immediately and starts the cycle of invocations and sleeps
|
||||
*/
|
||||
void Start() {
|
||||
runAndScheduleNext(this);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue