About 484 results
Open links in new tab
  1. 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 …

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

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

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

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

  6. 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: …

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

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

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

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