Moving from Event-based asynchronous pattern (EAP) to Task-based asynchronous pattern (TAP) with cancellation
Posted onWhat’s the point of this blog post? In modern C#/.NET ecosystem there is encouragement to use async/await Task based asynchronous model over other asynchronous patterns and approaches. On the other side, there are still a lot of libraries (legacy, wrappers from other technologies/languages which uses events for callback calls, etc…) which use older EAP approach […]