
ReactiveX
ReactiveX is more than an API, it's an idea and a breakthrough in programming. It has inspired several other APIs, frameworks, and even programming languages. We use ReactiveX
Links to More Information - ReactiveX
Reactive Programming, video of a presentation by Venkat Subramaniam; Building an Application from Scratch Using RxJava and Java8 by Shekhar Gulati; Party Tricks with RxJava, …
ReactiveX - Intro
Reactive Programming. ReactiveX provides a collection of operators with which you can filter, select, transform, combine, and compose Observables. This allows for efficient execution and …
ReactiveX - Observable
This page explains what the reactive pattern is and what Observables and observers are (and how observers subscribe to Observables). Other pages show how you use the variety of …
ReactiveX - Languages
ReactiveX is a collection of open source projects. The content of this page is licensed under Creative Commons Attribution 3.0 License, and code samples are licensed under the BSD …
ReactiveX - Operators
ReactiveX is a collection of open source projects. The content of this page is licensed under Creative Commons Attribution 3.0 License, and code samples are licensed under the BSD …
RxCpp: Main Page - ReactiveX
Jan 8, 2011 · The Reactive Extensions for Native (RxCpp) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query …
FlatMap operator - ReactiveX
flatMapObserver is found in each of the following distributions:. rx.js; rx.all.js; rx.all.compat.js; rx.compat.js; There is also a concatMap operator, which is like the flatMap operator, but it …
ReactiveX - backpressure
RxJava implements reactive pull backpressure, and many of its operators support that form of backpressure. It also has three operators that you can apply to Observables that have not …
Merge operator - ReactiveX
Operators; Combining; Merge; Merge combine multiple Observables into one by merging their emissions. You can combine the output of multiple Observables so that they act like a single …