create
Creates an observer from the specified onNext, onError, and onCompleted actions.
Arguments
[onNext](Function): Observer's onNext action implementation.[onError](Function): Observer's onError action implementation.[onCompleted](Function): Observer's onCompleted action implementation.
Returns
(Observer): The observer object implemented using the given actions.
var source = Rx.Observable.return(42);
var observer = Rx.Observer.create(
x => console.log(`onNext: ${x}`),
e => console.log(`onError: ${e}`),
() => console.log('onCompleted'));
var subscription = source.subscribe(observer);
// => onNext: 42
// => onCompletedExample
Last updated
Was this helpful?