
ReactiveX
Reactive Revolution 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 …
ReactiveX - Links to More Information
Grokking Reactive User Interfaces - Teaches you a new way of thinking about programs and data as well as how to build robust and extensible user interfaces. Mastering Reactive JavaScript …
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 - Intro
One main point of difference is that functional reactive programming operates on values that change continuously over time, while ReactiveX operates on discrete values that are emitted …
ReactiveX - Operators
Introduction Each language-specific implementation of ReactiveX implements a set of operators. Although there is much overlap between implementations, there are also some operators that …
ReactiveX - Languages
Languages Java: RxJava JavaScript: RxJS C#: Rx.NET C# (Unity): UniRx (no further developments) Scala: RxScala Clojure: RxClojure C++: RxCpp Lua: RxLua Perl: RxPerl Ruby: …
RxCpp: Main Page - ReactiveX
Jan 8, 2011 · The Reactive Extensions for C++ (RxCpp) is a library for composing asynchronous and event-based programs using observable sequences and LINQ-style query operators in C++.
Functional Programming in Javascript - ReactiveX
This is a series of interactive exercises for learning Microsoft's Reactive Extensions (Rx) Library for Javascript. So why is the title "Functional Programming in Javascript"? Well it turns out that …
ReactiveX - backpressure
Hot Observables typically do not cope well with a reactive pull model, and are better candidates for other flow control strategies, such as the use of the operators described on this page, or …
ReactiveX - FlatMap operator
Operators Transforming FlatMap FlatMap transform the items emitted by an Observable into Observables, then flatten the emissions from those into a single Observable The FlatMap …