About 400 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 languages. We use ReactiveX

  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 authored …

  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 Observable …

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

  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 are …

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

  7. 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: Rx.rb Python: RxPY …

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

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

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