-
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
asapScheduler: Scheduling inside of an executing action only works once #7196
Comments
…g flush Fixes an issue where trying to share a microtask cause the scheduler to trip over itself. Instead, each scheduled item will get its own microtask. resolves ReactiveX#7196
Fixes an issue where trying to share a microtask cause the scheduler to trip over itself. resolves ReactiveX#7196
it seems that animationFrameScheduler.schedule(() => {
results.push(1);
animationFrameScheduler.schedule(() => results.push(2));
animationFrameScheduler.schedule(() => results.push(3));
animationFrameScheduler.schedule(() => results.push(4));
animationFrameScheduler.schedule(() => results.push(5));
}); it can't get the but the native method is work well. is it a bug ? |
It seems our team ran into this issue regarding the |
Originally reported here: #6747 (comment)
Failing test:
The text was updated successfully, but these errors were encountered: