-
Notifications
You must be signed in to change notification settings - Fork 140
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
Add support template types #218
base: master
Are you sure you want to change the base?
Add support template types #218
Conversation
022ee96
to
006cb2a
Compare
Requires: ReactiveX/RxPHP#218
9c0ae45
to
63ee9a6
Compare
@@ -2,7 +2,8 @@ parameters: | |||
level: max | |||
|
|||
paths: | |||
- src/ | |||
- test/types/ |
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.
Didn't widen this to include the entire test directory because that would add 1752
errors to solve. This PR alone was already almost 1K.
63ee9a6
to
973a382
Compare
* @var Observable<T> $observable | ||
*/ | ||
$observable = Observable::of($x, $this->scheduler); | ||
$newDisp = $observable->delay($this->nextSend - $now, $this->scheduler) |
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.
This one is interesting, while this class accepts the SchedulerInterface
which can also be the AsyncSchedulerInterface
however. The delay
method on an observable only accepts the AsyncSchedulerInterface
. What to do here?
973a382
to
e0d57b2
Compare
e0d57b2
to
af34b8d
Compare
@davidwdan && @mbonneau This covers the basics ( 😅 ) and is ready for review. Is there anything you want me to add in the |
Requires: ReactiveX/RxPHP#218
Requires: ReactiveX/RxPHP#218
The first package update was successful based on this branch: |
Requires: ReactiveX/RxPHP#218
Depends on #217