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
- Host: GitHub
- URL: https://github.com/ppetr/delayed-scheduler
- Owner: ppetr
- License: apache-2.0
- Created: 2022-07-31T16:59:58.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-06T08:28:23.000Z (almost 4 years ago)
- Last Synced: 2025-03-26T07:25:16.287Z (over 1 year ago)
- Language: C++
- Size: 25.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: docs/contributing.md
- License: LICENSE
- Code of conduct: docs/code-of-conduct.md
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.