X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Ftime%2Ftimer.h;h=90d870ca9a3afbd44b155f5ccfb5b85747c02442;hp=403e484cba7376412ca0a068c58f908e258d1ff1;hb=aad3371b3d1831dd0525a51e40f637f00be6ff87;hpb=967785734be5c3fc6f75da122c2d93ebbb338271 diff --git a/source/time/timer.h b/source/time/timer.h index 403e484..90d870c 100644 --- a/source/time/timer.h +++ b/source/time/timer.h @@ -3,8 +3,8 @@ #include #include -#include "../core/mutex.h" -#include "../core/semaphore.h" +#include +#include #include "timedelta.h" #include "timestamp.h" @@ -49,34 +49,28 @@ private: std::vector slots; Semaphore sem; Mutex mutex; + bool blocking; public: + Timer(); ~Timer(); - /** - Adds a timer that will be executed periodically as long as the timeout - signal hander returns true. - */ + /** Adds a timer that will be executed periodically as long as the timeout + signal hander returns true. */ Slot &add(const TimeDelta &); - /** - Adds a timer that will be executed once at a specific time. The return - value of the timeout signal handler is ignored. - */ + /** Adds a timer that will be executed once at a specific time. The return + value of the timeout signal handler is ignored. */ Slot &add(const TimeStamp &); - /** - Cancels a previously added timer. - */ + /** Cancels a previously added timer. */ void cancel(Slot &); - /** - Checks all timers, executing any that have timed out. If block is true, + /** Checks all timers, executing any that have timed out. If block is true, waits until one times out. Note: If there are no active timers when a blocking tick is executed, it - won't return until a timer is added from another thread. - */ + won't return until a timer is added from another thread. */ void tick(bool block = true); TimeStamp get_next_timeout() const;