Open.ChannelExtensions icon indicating copy to clipboard operation
Open.ChannelExtensions copied to clipboard

A set of extensions for optimizing/simplifying System.Threading.Channels usage.

Results 4 Open.ChannelExtensions issues
Sort by recently updated
recently updated
newest added

Now ReadUntilCancelledAsync() and ReadAllAsEnumerablesAsync() catches all OperationCanceledException exceptions, even if they were thrown by user code in receiver. ```csharp using var httpClient = new HttpClient(); httpClient.Timeout = TimeSpan.FromSeconds(5); var url...

hi, I am trying to figure out, if this extension library be used with persistent channel from dotnext libraries? https://dotnet.github.io/dotNext/features/threading/channel.html My primary usage is for unbounded channel with never ending...