netstat -ano | findstr 8080
taskkill /pid 21424 /F
| ## Themeleaf | |
| ### initializaion: | |
| ``` | |
| xmlns:th="http://www.thymeleaf.org" | |
| ``` | |
| ## Quick Summary: | |
| ``` |
| ## Commands for new Project: | |
| ### For installing heroku CLI: | |
| npm install -g heroku | |
| ### >> New Project | |
| heroku login | |
| git init | |
| git add . | |
| git commit -m "Inititial Commit" | |
| heroku create <APP_NAME> |
| ### in vs code settings | |
| #### search for | |
| ``` | |
| javascript.suggest.completeFunctionCalls": true | |
| ``` | |
| and turn on |
These two operators will used to combine two or more Observables into a single Observable.
Concat operator combines output of two or more Observables into a single Observable. Concat operator always maintains the sequential execution without interleaving the emissions. So the first Observables completes its emission before the second starts and so forth if there are more observables.
Let’s say we have two separate Observables that emits Male and Female users. When Concat operator is used, the both Observables will be combined and act as single Observable.
Merge also merges multiple Observables into a single Observable but it won’t maintain the sequential execution.
Consider using Map operator where there is an offline operations needs to be done on emitted data. As explained in the article,
we got something from server but that doesn’t fulfils our requirement.
In that case, Map can be used to alter the emitted data.
Choose FlatMap when the order is not important. Let’s say you are building a Airline Ticket Fair app that fetches the prices of each airline separately and display on the screen.
Schedulers basically decides the thread on which a particular code runs whether on background thread or main thread. Apart from it everything we use is from RxJava library only.
are extensively used in android programming. Below are the list of schedulers available and their brief introduction.