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
Within BasicStatusManager, operations around the encapsulated collections appear to be thread-safe. However, updates to count and level could be temporarily or permanently invisible to other threads, or simply lost, due to lack of synchronization and non-atomic read-modify-write operations.
I offer a performant non-blocking solution in PR #851.
The text was updated successfully, but these errors were encountered:
Within
BasicStatusManager
, operations around the encapsulated collections appear to be thread-safe. However, updates tocount
andlevel
could be temporarily or permanently invisible to other threads, or simply lost, due to lack of synchronization and non-atomic read-modify-write operations.I offer a performant non-blocking solution in PR #851.
The text was updated successfully, but these errors were encountered: