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
Right now a Mutex is used to protect ConfigurationState. This structure is used across the codebase with many readers and writers. It would be more efficient to use a RwLock to allow multiple tasks to write to the structure at the same time.
Right now a Mutex is used to protect ConfigurationState. This structure is used across the codebase with many readers and writers. It would be more efficient to use a RwLock to allow multiple tasks to write to the structure at the same time.