nn::os::Alarm::SetPeriodic Member Function#include <nn/os.h>
void SetPeriodic(
nn::fnd::TimeSpan initial,
nn::fnd::TimeSpan interval,
AlarmHandler handler,
void * param
);
void SetPeriodic(
nn::fnd::TimeSpan interval,
AlarmHandler handler,
void * param
);
SetPeriodic(nn::fnd::TimeSpan, nn::fnd::TimeSpan, AlarmHandler, void *)
|
Sets a periodic alarm. Calls the handler once after the initial duration has elapsed and thereafter continues calling it at the specified interval. |
SetPeriodic(nn::fnd::TimeSpan, AlarmHandler, void *)
|
Sets a periodic alarm. Calls the handler, and continues calling it, at the specified interval. |
SetPeriodic(nn::fnd::TimeSpan, nn::fnd::TimeSpan, AlarmHandler, void *)In the Debug/Development builds, if this function is called while an alarm is set it will fail on an assertion inside the library. In the Release build, processing with continue without applying the setting.
SetPeriodic(nn::fnd::TimeSpan, AlarmHandler, void *)In the Debug/Development builds, if this function is called while an alarm is set it will fail on an assertion inside the library. In the Release build, processing with continue without applying the setting.
CONFIDENTIAL