This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Linq; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace System.Threading.Tasks.Helpers | |
{ | |
/// <summary> | |
/// Allow to manage parallelism task with a max degree of parallelism | |
/// </summary> | |
public class AsyncParallelWrapper |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text.Json; | |
using System.Threading.Tasks; | |
using Refit; | |
namespace Refit.Extensions | |
{ | |
public static class RefitExtensions |