-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing doOn* operators #476
Comments
|
@staltz that's not quite right if you look at the implementation: https://github.com/Reactive-Extensions/RxJS/blob/master/src/core/perf/operators/tap.js#L55-L86 Since you're lacking the default behavior of the |
@mattpodwysocki I'd personally like to do away with |
@Blesh that's fine but Function#bind is very slow and not likely to be much faster in the future, whereas the |
@staltz @luisgabriel ... simpler (and perhaps more explicit) in ES6: obs.do({ error(err) { /* stuff */ } })
// or
obs.do({ error: (err) => /* stuff */ }) |
Related, though, we should make sure |
The migration guide does not mention the removal of the convenience functions |
The documentation http://reactivex.io/documentation/operators/do.html#collapseRxJS still mentions |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
It seems that doOnNext, doOnError and doOnCompleted are not implemented here yet.
Is it intentional or should we add them?
The text was updated successfully, but these errors were encountered: