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
Ok, I'll consider adding a note about it in the next release.
But if you try to use a mutex across isolates, you should quickly realise it is impossible. The only way to communicate between isolates is to use the Isolate.send() method that only sends messages, so there is no way to refer to the same mutex in two different isolates. And the isolates documentation says they are designed so you don't have to worry about mutexes or locks.
The documentation should be changed to answer this question.?
The text was updated successfully, but these errors were encountered: