- fix TimerQueue API

This commit is contained in:
2019-05-14 14:15:36 +03:00
parent 73ef8573db
commit be40ebef7e
2 changed files with 6 additions and 5 deletions

View File

@@ -109,7 +109,7 @@ public:
// \return
// Returns the ID of the new timer. You can use this ID to cancel the
// timer
uint64_t add(int64_t milliseconds, std::function<void(bool)> handler);
uint64_t add(std::chrono::milliseconds seconds, std::function<void(bool)> handler);
//! Cancels the specified timer
// \return