We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This can return NotificationLite#ON_NEXT_NULL_SENTINEL or NotificationLite#ON_COMPLETED_SENTINEL.
Observable<Foo> observable = .... ; Foo foo = observable.toBlocking().mostRecent(null).iterator().next()
which will cause a ClassCastException....
This seems inconsistent with the docs and it didn't used to do this ( in 0.17.5 ) https://github.com/Netflix/RxJava/wiki/Blocking-Observable-Operators#mostrecent
Looks like the fix will probably relate to BlockingOperatorMostRecent.MostRecentObserver
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. I think I know what caused this.
Sorry, something went wrong.
@abersnaze Do you have time to take a look at this?
Sure, I'll take look.
Fixed in #1552
No branches or pull requests
This can return NotificationLite#ON_NEXT_NULL_SENTINEL or NotificationLite#ON_COMPLETED_SENTINEL.
which will cause a ClassCastException....
This seems inconsistent with the docs and it didn't used to do this ( in 0.17.5 )
https://github.com/Netflix/RxJava/wiki/Blocking-Observable-Operators#mostrecent
Looks like the fix will probably relate to BlockingOperatorMostRecent.MostRecentObserver
The text was updated successfully, but these errors were encountered: