Top "Reactive-programming" questions

Reactive Programming is a programming paradigm oriented around data flows and the propagation of change.

What is (functional) reactive programming?

I've read the Wikipedia article on reactive programming. I've also read the small article on functional reactive programming. The descriptions …

functional-programming terminology reactive-programming frp
How to get data from observable in angular2

I am trying to print the result of http call in Angular using rxjs Consider the following code import { Component, …

typescript angular reactive-programming rxjs observable
Using onBlur with JSX and React

I am trying to create a password confirmation feature that renders an error only after a user leaves the confirmation …

html reactjs reactive-programming react-jsx onblur
Chaining Observables in RxJS

I'm learning RxJS and Angular 2. Let's say I have a promise chain with multiple async function calls which depend on …

javascript promise reactive-programming rxjs rxjs5
RxJS: How would I "manually" update an Observable?

I think I must be misunderstanding something fundamental, because in my mind this should be the most basic case for …

reactive-programming rxjs
React JS: Explanation of this.props.items.map feature

I am using React JS for Rendering the HTML content. The issue is I am not able to understand particular …

javascript html reactjs reactive-programming
Combine a list of Observables and wait until all completed

TL;DR How to convert Task.whenAll(List<Task>) into RxJava? My existing code uses Bolts to build …

java rx-java reactive-programming rx-android
What is "callback hell" and how and why does RX solve it?

Can someone give a clear definition together with a simple example that explains what is a "callback hell" for someone …

javascript callback language-lawyer reactive-programming rxjs
How to 'wait' for two observables in RxJS

In my app i have something like: this._personService.getName(id) .concat(this._documentService.getDocument()) .subscribe((response) => { console.log(…

javascript angular rxjs reactive-programming
Get the latest value of an Observable and emit it immeditely

I'm trying to get the latest value of a given Observable and get it to emit immediately once it's called. …

java rx-java reactive-programming rx-android