using System; using System.Threading.Tasks; namespace SpotifyAPI.Web.Http { /// /// The Retry Handler will be directly called after the response is retrived and before errors and body are processed. /// public interface IRetryHandler { Task HandleRetry(IRequest request, IResponse response, Func> retry); } }