The Mutex class is very misunderstood, and Global mutexes even more so.
What is good, safe pattern to use when creating Global mutexes?
|
The Mutex class is very misunderstood, and Global mutexes even more so. What is good, safe pattern to use when creating Global mutexes? | ||||
|
feedback
|
|
I really want to make sure this is out there, cause its so hard to get right.
| |||||||||||||||||||
feedback
|
|
This example will exit after 5 seconds if another instance is already running.
| ||||
|
feedback
|
|
Would this be the right way of doing the same thing with a timeout ?
| ||||
|
feedback
|
|
Using the accepted answer I create a helper class so you could use it in a similar way you would use the Lock statement. Just thought I'd share. Use:
And the helper class:
| ||||
|
feedback
|