You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 29, 2020. It is now read-only.
I've played around with the code recently and noticed that CancellationTokenSource instances are created quite often and never disposed.
I understand, that eventually they would be cleared up by GC, but still, it can cause issues under heavy loads as it might create a Timer and ManualResetEvent internally.
So is it a good practice here not to dispose CancellationTokenSource?