-
Notifications
You must be signed in to change notification settings - Fork 7.6k
2.x: Add Completable.delaySubscription marble, fix some javadoc #6257
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
Conversation
Codecov Report
@@ Coverage Diff @@
## 2.x #6257 +/- ##
============================================
- Coverage 98.28% 98.26% -0.02%
+ Complexity 6206 6202 -4
============================================
Files 667 667
Lines 44889 44889
Branches 6216 6216
============================================
- Hits 44117 44112 -5
- Misses 240 241 +1
- Partials 532 536 +4
Continue to review full report at Codecov.
|
|
|
||
| /** | ||
| * A Subscriber with an additional onNextIf(T) method that | ||
| * A Subscriber with an additional {@link #tryOnNext(Object)} method that |
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.
thanks was going to raise this :P
| * A Subscriber with an additional {@link #tryOnNext(Object)} method that | ||
| * tells the caller the specified value has been accepted or | ||
| * not. | ||
| * |
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.
separate topic, but when reading this I was wondering if we should call out pattern/antipattern for calling tryOnNext and also onNext. Is there a case where this should happen? If so, or not, would that description end up in javadoc or somewhere else?
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.
No mixing. See Flowable's fromArray and filter for usage examples.
Completable.delaySubscriptionoperator.ConditionalSubscriberjavadoc.