About 50 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 - 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.

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

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

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

  6. Functional Programming in Javascript - ReactiveX

    Well it turns out that the key to learning Rx is training yourself to use functional programming to manipulate collections. Functional programming provides developers with the tools to abstract …

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

  9. ReactiveX - Scheduler

    Scheduler If you want to introduce multithreading into your cascade of Observable operators, you can do so by instructing those operators (or particular Observables) to operate on particular Schedulers. …

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