this is more an architectural question or also maybe a question of point of view.
Many Android libs have an reactive approach in there APIs. e.g. Volley
, Volley have a nice JsonObjectRequest
to put it into a RequestQueue
and in the callback onResponse
you can handle the response.
Or in Picasso
you have also an async call to just load the picture in a given ImageView.
In the new Persistent Tool ObjectBox
for Android you have also an reactive approach to set and query data from the database.
So my question is, where are the great needing of RXJava in Android? In which UseCases is RXJava essential?