You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And I call a method on a Refit Client with local cancellation token, which cancels after 5 seconds, then which cancellation token will be used?
Are the global and local getting merged in a linked token source or one of them is taken with priority (which one)?
The text was updated successfully, but these errors were encountered:
I'm not sure how the timeout works in HttpClient itself. We pass the CancellationToken from any parameters into all methods that accept one. You'd need to see how HttpClient handles that combination.
Hello!
I want to know how the request cancellation works in Refit
If I have the following configuration with global cancellation
And I call a method on a Refit Client with local cancellation token, which cancels after 5 seconds, then which cancellation token will be used?
Are the global and local getting merged in a linked token source or one of them is taken with priority (which one)?
The text was updated successfully, but these errors were encountered: