timcassell / ProtoPromise

Robust and efficient library for management of asynchronous operations in C#/.Net.
MIT License
136 stars 13 forks source link

Add `Channel` type #384

Open timcassell opened 5 months ago

timcassell commented 5 months ago

Like System.Threading.Channels.Channel<T>, but optimized with Promise<T> and AsyncEnumerable<T> instead of ValueTask<T> and IAsyncEnumerable<T>.