RxJS 퀵스타트

어플리케이션 오류 정의RxJS 처리 관점
1. 입력 데이타 오류Observable
2. 상태 전파 오류Observer
3. 로직 처리 오류Functional Programming

https://rxjs-dev.firebaseapp.com/guide/observable

Observable

Observables are lazy Push collections of multiple values. They fill the missing spot in the following table:

SINGLEMULTIPLE
PullFunctionIterator
PushPromiseObservable

Pull versus Push

PRODUCERCONSUMER
PullPassive: produces data when requested.Active: decides when data is requested.
PushActive: produces data at its own pace.Passive: reacts to received data.

0개의 댓글