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
This requires using ThreadPool.UnsafeQueueUserWorkItem which does not capture the ExecutionContext, unlike the ThreadPool.QueueUserWorkItem that we currently use that does. Switching the API used will have the side-effect of potential breaking changes. Therefore, this will need to be done in the next major version.
The text was updated successfully, but these errors were encountered:
IThreadPoolWorkItem
was exposed in netcoreapp3.0 to enable queueing work to theThreadPool
without allocations.https://learn.microsoft.com/en-us/dotnet/api/system.threading.ithreadpoolworkitem
This requires using
ThreadPool.UnsafeQueueUserWorkItem
which does not capture theExecutionContext
, unlike theThreadPool.QueueUserWorkItem
that we currently use that does. Switching the API used will have the side-effect of potential breaking changes. Therefore, this will need to be done in the next major version.The text was updated successfully, but these errors were encountered: