accept
Arguments
Returns
Example
var observer = Rx.Observer.create(x => x);
var notification = Rx.Notification.createOnNext(42);
console.log(notification.accept(observer));
// => 42Using an observer
Using a function
Last updated