Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
448 views
in Technique[技术] by (71.8m points)

rx java - RxJava introduced Single<T>. How do I convert an Observable<T> to a Single<T>?

RxJava recently introduced Single. Is there a way to convert an already existing Observable (that's pretty much a Single) to a Single without modifying the source of the original observable?

For example, I have an api service class with a method that returns an Observable - which is essentially fetching a User from a remote resource. Say I can't modify the service. I want to consume this elsewhere but return a Single. How do I do this?

A pinch more background

RxJava recently introduced the concept of a Single which is more or less an Rx friendly simple callback (i.e. an Observable emitting one object or an error) (read more about it here - http://reactivex.io/documentation/single.html)

question from:https://stackoverflow.com/questions/36627927/rxjava-introduced-singlet-how-do-i-convert-an-observablet-to-a-singlet

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I think another answer is outdated. You should probably check the following methods.

singleOrError: Emits the one and only element, IndexOutOfBoundsException if the source is longer than 1 item or a NoSuchElementException if the source is empty.

firstOrError: Emits the first element or a NoSuchElementException if the source is empty.

lastOrError: Emits the lastelement or a NoSuchElementException if the source is empty.

elementAtOrError: Emits the indexth element or a NoSuchElementException.

More info on this page: https://github.com/ReactiveX/RxJava/wiki/What%27s-different-in-2.0


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...