-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
Rxscala improvement #1159
Rxscala improvement #1159
Conversation
RxJava-pull-requests #1071 FAILURE |
Looks the failure is due to the cloudbees network issue. |
RxJava-pull-requests #1075 FAILURE |
RxJava-pull-requests #1076 SUCCESS |
Scala users all okay with this? |
I am. |
def ::[U >: T](elem: U): Observable[U] = { | ||
val thisJava = this.asJavaObservable.asInstanceOf[rx.Observable[U]] | ||
toScalaObservable(thisJava.startWith(elem)) | ||
} |
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 would not add this method (see #1151 (comment) why)
Update according to review in issue #1159
Add
dropUntil
,contains
,repeat
,doOnTerminate
,startWith
,publish
variants to RxScala. #1151, #1153./cc @headinthebox @samuelgruetter