16namespace rpp::schedulers::details
22namespace rpp::schedulers
24using clock_type = std::chrono::steady_clock;
25using time_point = clock_type::time_point;
26using duration = std::chrono::nanoseconds;
27using optional_duration = std::optional<duration>;
scheduler which schedules execution of schedulables via queueing tasks to another thread with priorit...
Definition: new_thread_scheduler.hpp:32
scheduler which schedules execution via queueing tasks, but execution of tasks should be manually dis...
Definition: run_loop_scheduler.hpp:30
Schedules execution of schedulables via queueing tasks to the caller thread with priority to time_poi...
Definition: trampoline_scheduler.hpp:41