Performance problems?
23W opened this issue · 0 comments
23W commented
Why library doesn't use ConfigureAwait(false)
method. Is library really require the same context in all places? I'm asking because such code in library is a potential deadlock issue on client platform with UI thread.
I think you can slightly speed up code and remove many problems, if add ConfigureAwait(false)
to code, especially in DispatchQueuedHits()
, DispatchImmediateHit()
and DispatchHitData()
.