author: Jon LaBelle date: April 7, 2019
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker container for ditaa | |
Author: (chai2010/ditaa-docker)[https://github.com/chai2010/ditaa-docker] | |
## Usage | |
``` | |
# create txt file | |
$ cat << EOF > simple.txt | |
+--------+ +-------+ +-------+ | |
| | --+ ditaa +--> | | |
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
.