In an Android app scenario, I want to fetch some Observable<Data>
from network, and there are multiple Observer<Data>
subscribed to it to update corresponding views. In case of error -say a timeout- show a button to the user to try again.
How can I do the try again part? can I tell the observable to re-execute its logic again without re-subscribing to it?