<aside> 📌 목차
</aside>
동작방식을 이해했다면 이해가 가는 그림
Observable.create
subscribe()
onNext: { ... }
, onCompleted: {...}
, etc.스케줄러를 따로 지정해주지 않았다면
subscription code, operator code, observing code는 subscribe() 가 호출된 쓰레드에서 실행된다.
By default, an Observable and the chain of operators that you apply to it will do its work, and will notify its observers, on the same thread on which its
Subscribe
method is called.