Operators that originate new Observables.


Create (생성)

create an Observable from scratch by means of a function

함수를 사용하여 처음부터 Observable 생성

You can create an Observable from scratch by using the Create operator. You pass this operator a function that accepts the observer as its parameter. Write this function so that it behaves as an Observable — by calling the observer’s onNextonError, and onCompleted methods appropriately.