-
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
feat(scheduled): Adds scheduled creation method #4595
Conversation
372c2c2
to
1313899
Compare
Generated by 🚫 dangerJS |
Pull Request Test Coverage Report for Build 8384
💛 - Coveralls |
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
The build is failing✨ Good work on this PR so far! ✨ Unfortunately, the Travis CI build is failing as of e47abac. Here's the output:
|
- Simplifies code around common observable creation and subscription - Removes `scalar` internal impl - Deprecates a number of APIs that accept schedulers where we would rather people use `scheduled`.
Is there some documentation how migration from |
- Simplifies code around common observable creation and subscription - Removes `scalar` internal impl - Deprecates a number of APIs that accept schedulers where we would rather people use `scheduled`.
The
scheduled
creation method is meant to create an observable with a scheduler. The goal of this PR is to set us up to remove scheduling from very common code paths likefrom
andof
, amongst others.This deprecates versions of
from
,concat
,merge
,startWith
andendWith
that allow passing a scheduler.This PR also simplifies a few common code paths.
Put another way, this PR:
from
into their own functions