I use the Retrofit service interface, which generates my Call objects, very similar to the example they show:
public interface GitHubService { @GET("users/{user}/repos") Call<List<Repo>> listRepos(@Path("user") String user); }
I would like to be able to undo all Call objects generated by the listRepos method that have been installed or started. I see that I can add a tag to the Request Request Builder object, but how can I change the call request? It seems I cannot change the call request after creating it.
Aneem
source share