-
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
Feature: AbortSignal support #5591
Conversation
NOTE: This does not yet add passing of an |
We really need to get the circle CI build stuff off of here. As it's no longer relevant. haha |
adds event-target-polyfill, as the abortcontroller polyfill no longer polyfills EventTarget
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Noticed an unnecessary import that will need to be removed and isAbortError
could/should be a user-defined type guard. And Victor's comment - https://github.com/ReactiveX/rxjs/pull/5591/files#r455752833 - needs to be addressed, too.
Related #5649 |
This is outdated, but remains on our radar. I'll close it for now. |
This is a flag in the ground for adding support for
AbortSignal
to RxJS.This is a non-breaking change that adds support for passing AbortSignal to both
subscribe
andforEach
calls of Observable. See commits.Related #5545 and #3122