event/{Coarse,Fine}TimerEvent: add API docs
This commit is contained in:
parent
3d2bd08132
commit
9383ceac30
|
@ -51,6 +51,9 @@ public:
|
|||
return due;
|
||||
}
|
||||
|
||||
/**
|
||||
* Was this timer scheduled?
|
||||
*/
|
||||
bool IsPending() const noexcept {
|
||||
return is_linked();
|
||||
}
|
||||
|
|
|
@ -62,6 +62,9 @@ public:
|
|||
return due;
|
||||
}
|
||||
|
||||
/**
|
||||
* Was this timer scheduled?
|
||||
*/
|
||||
bool IsPending() const noexcept {
|
||||
return is_linked();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue