title: Push Based Architecture with RxJS tags: angular, rxjs, javascript, angularjs, tutorial, typescript, observables, rxjs observables, Push Based Architecture with RxJS, state management, behavior subject description: Make Reactive Applications
There are 2 types of architectures one is
Pull Based
the second one isPush Based
. I will explain you how can we leverageRxJS BehaviorSubject
to establishPush Based Architecture
. In Design Patterns book we haveObserver Design Pattern
that is exactly what I mean byPush Based Architecture
.