robvdpol / RaceControl

Race Control is a standalone, open source F1TV client for Windows, written in C# on the .NET platform.
GNU General Public License v3.0
1.19k stars 95 forks source link

Reduce unnecessary context switching in Service layer #393

Closed Cheesebaron closed 2 years ago

Cheesebaron commented 2 years ago

I noticed there are a lot of context switches in the service layer, which are unnecessary.

I have reduced these adding ConfigureAwait(false) to relevant awaited tasks.