#include <functional>
#include <nui/frontend/rpc_client.hpp>
#include <cstdint>
Go to the source code of this file.
|
void | Nui::setInterval (int milliseconds, std::function< void()> toWrap, std::function< void(TimerHandle &&)> callback) |
| Creates a new timer that calls "toWrap" every "milliseconds" milliseconds. More...
|
|
void | Nui::setTimeout (int milliseconds, std::function< void()> toWrap, std::function< void(TimerHandle)> callback) |
| Creates a new delayed function that calls "toWrap" after "milliseconds" milliseconds. More...
|
|