In the new release, reactiveX introduced Single, as a variant of Observable http://reactivex.io/documentation/single.html
Which is nice to have since in my current use-case, I have multiple executions, and each of them only returns a single result. So it will make sense if I change from using Observable to Single.
But then as a part of my use-case, for those multiple execution above, I need to concat them into one Observable stream later on (to get results from all above executions).
So now my question is, what is more beneficial in term of performance?
or
Thank you.
Single is meant to be used when you expect a single value response.
Observable on the other hand is to be used for a stream or vector values.
So in terms of Reactive Pattern it's enough to use Single in case you expect the only 1 result and don't want to manipulate data