Creates an observer from the specified onNext
, onError
, and onCompleted
actions.
[onNext]
(Function): Observer's onNext action implementation.[onError]
(Function): Observer's onError action implementation.[onCompleted]
(Function): Observer's onCompleted action implementation.
(Observer): The observer object implemented using the given actions.
{% if book.isPdf == true %}
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
// => onCompleted
{% else %}
{% endif %}
{% if book.isPdf %}
{% else %}
- rx.js
{% endif %}