Set tag to redial to cancel tag later

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.

+7
android call retrofit2
source share

No one has answered this question yet.

See similar questions:

4
Retrofit Adding a tag to the source request object

or similar:

1111
Is abandonment of an application incredulous?
44
Set dynamic base url using Retrofit 2.0 and Dagger 2
14
Using the End Call feature in Retrofit
4
Upgrade 2 cancel request
2
Android Retrofit - no callback
one
Generic type in modification for custom call adapter
0
How to create a default body for calling Retrofit directly in the interface?
0
Cancellation of requests for reinstallation or their processing when exiting an action or fragment - android
0
Retrofit 2 raises the same request as many undesirable moments in my application
-2
OnResponse method not called when using Retrofit Library

All Articles