Here is a list of all modules:
[detail level 123]
▼RPP | Rpp is Reactive extension for C++20 |
Observables | Observable is the source of any Reactive Stream. Observable provides ability to subscribe observer on some events |
Observers | Observer subscribe on observable and obtains values provided by observable |
▼Operators | Operators is way to modify observables and extend with some extra custom logic |
Transforming Operators | Transforming operators are operators that transform items provided by observable |
Filtering Operators | Filtering operators are operators that emit only part of items that satisfies some condition |
Conditional Operators | Conditional operators are operators that emit items based on some condition including condition of items from other observables |
Combining Operators | Combining operators are operators that combines emissions of multiple observables into same observable by some rule |
Aggregate Operators | Aggregate operators are operators on the entire sequence of items provided by observable |
Utility Operators | Utility operators are operators that provide some extra functionality without changing of original values, but changing of behaviour |
Connectable Operators | Connectable operators are operators that provide extra functionality for multicasting of controlling of subscription |
Error handling Operators | Error handling operators Operators that help to recover from error notifications from an Observable |
Creational Operators | Creational operators are operators that create new observable |
Schedulers | Scheduler is the way to introduce multi-threading in your application via RPP |
Subjects | Observable is the observable and observer at the same time. Uses as a bridge and for manual sending of values |
▼RPPQT | RppQt is extension of RPP which enables support of Qt library |
▼QT Operators | QT Operators is way to modify observables and extend with some extra custom logic but applied for QObjects |
QT Creational Operators | QT creational operators are operators that create new observable from QObjects |
QT Schedulers | Scheduler is the way to introduce multi-threading in your application via RPP |