We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I was expecting Single#lift() to be part of the public API like Observable#lift(). Is there a reason for this restriction?
Single#lift()
Observable#lift()
Single#compose() is public, too (and links to #lift() in the docs). I guess the private access is just a bug.
Single#compose()
#lift()
https://github.com/ReactiveX/RxJava/blob/1.x/src/main/java/rx/Single.java#L176
My workaround:
Single.just("value") .toObservable() .lift(myOperator) .toSingle();
The text was updated successfully, but these errors were encountered:
Single is in experimental phase, its API is not stable and there wasn't enough confidence to open up many of the methods, including lift.
Sorry, something went wrong.
I think the time has come to expose Single.lift(). PRs welcome.
Single.lift()
No branches or pull requests
I was expecting
Single#lift()
to be part of the public API likeObservable#lift()
. Is there a reason for this restriction?Single#compose()
is public, too (and links to#lift()
in the docs). I guess the private access is just a bug.https://github.com/ReactiveX/RxJava/blob/1.x/src/main/java/rx/Single.java#L176
My workaround:
The text was updated successfully, but these errors were encountered: