-
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
Expand operator behavior #766
Comments
This seems to be more related to cc/ @trxcllnt |
Took a look this bit more, this is behavior of
it infinitely continues while there isn't terminating condition. |
|
: compare to RxJS4, yes it does. I'll try changes for this.
: I think this is similar case to #651, eventually might need some mechanism to avoid stack overflows. |
That mechanism is allowing users to provide a scheduler. The problem is that any mechanism (scheduling) to avoid stack overflows also: 1. is less performant, and 2. makes debugging with call stacks gnarly. ... those are two of our top goals. |
I'm closing this issue since |
Took example snippet from RxJS 4,
RxJS4
RxJS Next
The text was updated successfully, but these errors were encountered: