-
Notifications
You must be signed in to change notification settings - Fork 450
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 SingleK wrapper for RxJava Single #857
Conversation
9e446b5
to
3934e25
Compare
Codecov Report
@@ Coverage Diff @@
## master #857 +/- ##
============================================
+ Coverage 44.64% 44.86% +0.22%
- Complexity 623 628 +5
============================================
Files 298 300 +2
Lines 7669 7709 +40
Branches 832 834 +2
============================================
+ Hits 3424 3459 +35
- Misses 3942 3947 +5
Partials 303 303
Continue to review full report at Codecov.
|
} | ||
} | ||
|
||
// FIXME(paco): remove if this hasn't triggered in a while - 26 Jan 18 |
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.
lol is this in both Observable and Flowable? I wouldn't have it on by default.
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.
Yeah was copypasta, removed now from the 3 wrappers, since it has not been triggered since January.
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.
I'd add the Single
example to the documentation, the same way Flowable
is just mentioned.
7e3e849
to
dd92545
Compare
Back to you @pakoito |
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.
To p'alante
test.assertTerminated().assertComplete().assertNoErrors().assertValue(0) | ||
} | ||
|
||
"Multi-thread Observables should run on their required threads" { |
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.
*Singles
* add instances and law tests * generate complete info graph * remove shouldNotBe fallback to logs from ObservableK, FlowableK and SingleK tests * add SingleK to a couple of examples in docs, including Async based polymorphic program sample
Fixes #856
SingleK