ReactivePlusPlus
One more implementation of ReactiveX approach in C++ with care about performance and templates in mind
 
Loading...
Searching...
No Matches
Schedulers

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...
 

Detailed Description

Scheduler is the way to introduce multi-threading in your application via RPP.

See also
https://reactivex.io/documentation/scheduler.html