-
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
repeat() operator behavior #516
Labels
bug
Confirmed bug
Comments
I'll try to look into this as well as expanding test coverages of |
kwonoj
added a commit
to kwonoj/rxjs
that referenced
this issue
Oct 15, 2015
- repeat operator now supports resubscription behavior properly along with infinite repeat - add, expand test coverage - update micro perf test case closes ReactiveX#516
kwonoj
added a commit
to kwonoj/rxjs
that referenced
this issue
Oct 15, 2015
- repeat operator now supports resubscription behavior properly along with infinite repeat closes ReactiveX#516
It's possible that this and |
I just gave a try quick code snippet like
which shows result as
between RxJS4 and this implementation both. Can this be considered as passing sign, or did I try it incorrectly? |
Thanks @kwonoj. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
In some cases it seems resubscription does not triggered correctly. for example,
Rx.Observable.interval(40).take(2).repeat(2).subscribe(console.log, null, function(){console.log('completed')});
RxJS4
RxJS5
The text was updated successfully, but these errors were encountered: