timcassell / ProtoPromise

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

Optimize `Promise.{All, Merge, Race, First}` #398

Closed timcassell closed 4 months ago

timcassell commented 4 months ago

Reduced memory of PromisePassThrough. Hook up promises directly instead of using PromisePassThrough where possible. Use internal enumerators to consolidate code instead of special-casing 2-, 3-, and 4-arg overloads.