mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-25 07:26:28 +00:00
14 lines
386 B
C#
14 lines
386 B
C#
using System;
|
|
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
|
|
{
|
|
Task<IResponse> HandleRetry(IRequest request, IResponse response, Func<IRequest, Task<IResponse>> retry);
|
|
}
|
|
}
|