Skip to content

rklabs/asynctimerqueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AsyncTimer

Asynchronous timer queue mechanism(C++11)

Build Status

This is an implementation of asynchronous timer queue. Callbacks can be registered to be run in future. Time has to be specified in millisec. An "event" can be created to run once or repeatedly. AsyncTimerQueue class has been implemented as singleton. The application intending to use AsyncTimerQueue must run Timer::AsyncTimerQueue::timerLoop in a separate thread. Below is simple example.

Event handler signature should be as follows 'void func(type1 arg1, type2, arg2, ...)'

#include "asynctimerqueue.hh"
...
...

class foo {
 public:
    void handler3() {
        std::cout << "handler3" << std::endl;
    }
};

int main() {

    std::thread asyncthread(&Timer::AsyncTimerQueue::timerLoop,
                            &Timer::AsyncTimerQueue::Instance());

    foo f;

    int eventId1 = Timer::AsyncTimerQueue::Instance().create(1000, true, &handler1);
    int eventId2 = Timer::AsyncTimerQueue::Instance().create(2000, true, &handler2);
    int eventId3 = Timer::AsyncTimerQueue::Instance().create(4000, true, &foo::handler3, &f);

    std::this_thread::sleep_for(std::chrono::seconds(2));

    Timer::AsyncTimerQueue::Instance().cancel(eventId1);

    asyncthread.join();
}

Releases

No releases published

Packages

No packages published