When I define return types for Retrofit service in...
# rx
d
When I define return types for Retrofit service interfaces should I use
Single
? With RxJava1.x I was using
Observable
since there was no other option but with RxJava2.x
Single
seems to be more reasonable since call to the API will always emit one time or fail. Does it make sense?