An open API service indexing awesome lists of open source software.

https://github.com/ppetr/delayed-scheduler

Time-ordered C++ priority queue that manages ordering and emitting elements (callbacks) at their scheduled times
https://github.com/ppetr/delayed-scheduler

Last synced: 11 months ago
JSON representation

Time-ordered C++ priority queue that manages ordering and emitting elements (callbacks) at their scheduled times

Awesome Lists containing this project

README

          

# Delayed Scheduler

Implements scheduling actions at specific times. Waiting for actions can be
performed by a single, dedicated thread.

By design this module doesn't implement execution of scheduled actions. Once
their respective times are reached, actions become available to be executed at
the caller's discretion.