In computing, reactive programming is a declarative programming paradigm concerned with data streams and the propagation of change.
https://en.wikipedia.org/wiki/Reactive_programming
var b = 1
var c = 2
var a = b + c
b = 10
console.log(a)
https://en.wikipedia.org/wiki/Reactive_programming
var b = 1
var c = 2
var a $= b + c
b = 10
console.log(a)
https://en.wikipedia.org/wiki/Reactive_programming
SINGLE | MULTIPLE | |
---|---|---|
Pull | ||
Push | |
Items emit
Emission type
SINGLE | MULTIPLE | |
---|---|---|
Pull | Function | |
Push | |
Emission type
Emission type
Items emit
SINGLE | MULTIPLE | |
---|---|---|
Pull | Function | |
Push | Promise |
Emission type
Items emit
SINGLE | MULTIPLE | |
---|---|---|
Pull | Function | Iterator |
Push | Promise | |
Emission type
Items emit
SINGLE | MULTIPLE | |
---|---|---|
Pull | Function | Iterator |
Push | Promise | Observable |
Items emit
Emission type
http://reactivex.io/intro.html
ReactiveX is a library for composing asynchronous and event-based programs by using observable sequences.
http://reactivex.io/languages.html
http://reactivex.io/languages.html