Scheduler is the way to introduce multi-threading in your application via RPP. More...
Classes | |
class | rpp::schedulers::immediate |
immediately calls provided schedulable or waits for time_point (in the caller-thread) More... | |
class | rpp::schedulers::new_thread |
scheduler which schedules execution of schedulables via queueing tasks to another thread with priority to time_point and order More... | |
class | rpp::schedulers::run_loop |
scheduler which schedules execution via queueing tasks, but execution of tasks should be manually dispatched More... | |
class | rpp::schedulers::trampoline |
Schedules execution of schedulables via queueing tasks to the caller thread with priority to time_point and order. More... | |
Scheduler is the way to introduce multi-threading in your application via RPP.