mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 22:56:25 +00:00
16 lines
505 B
C#
16 lines
505 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SpotifyAPI.Web.Http
|
|
{
|
|
/// <summary>
|
|
/// The Retry Handler will be directly called after the response is retrived and before errors and body are processed.
|
|
/// </summary>
|
|
public interface IRetryHandler
|
|
{
|
|
delegate Task<IResponse> RetryFunc(IRequest request, CancellationToken cancel = default);
|
|
|
|
Task<IResponse> HandleRetry(IRequest request, IResponse response, RetryFunc retry, CancellationToken cancel = default);
|
|
}
|
|
}
|