Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Scheduler library in C++ similar to Java Quartz

Tags:

c++

scheduler

I'm looking for a cross-platform library in C/C++ which can schedule jobs, function calls, etc. It would be nice if it is closer to Java Quartz. I would prefer BSD style licenses, LGPL would be okay too.

like image 700
user401132 Avatar asked Jul 24 '10 16:07

user401132


1 Answers

Libevent: http://www.monkey.org/~provos/libevent/ is probably too heavyweight for your use case, but you can decide for yourself if it works for you.

Edit: This is more about scheduling functions after certain timeouts within a program. Looking at Quartz, it appears to be broader. So I doubt if libevent is what you are looking for.

like image 126
Sanketh I Avatar answered Nov 08 '22 18:11

Sanketh I