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
Currently, Nutmeg always wraps the model in a mutex.
Some models don't need this, e.g. if they use atomics or otherwise do their own locking. It would be nice to have an option to not use the mutex.
Perhaps these models should have to be Send+Sync, but then conceivably Nutmeg could be used from just a single thread, in which case we wouldn't need that. So, perhaps we should just let those traits propagate to the view.
The text was updated successfully, but these errors were encountered:
Currently, Nutmeg always wraps the model in a mutex.
Some models don't need this, e.g. if they use atomics or otherwise do their own locking. It would be nice to have an option to not use the mutex.
Perhaps these models should have to be Send+Sync, but then conceivably Nutmeg could be used from just a single thread, in which case we wouldn't need that. So, perhaps we should just let those traits propagate to the view.
The text was updated successfully, but these errors were encountered: