I suspect this is a very dumb question: what is the correct syntax for an interruptible lock statement in C#? E.g. get lock; if lock is interrupted before locked code finishes, return false out of the enclosing method. Probably totally the wrong terminology... Thanks.
|
|
|||||
|
|
|
You can have a timeout while aquiring a lock using The main time interrupt applies might be in Thread.Sleep, which can be interrupted with Thread.Interrupt - but again, this won't yank control out of an executing method block. What exactly is it that you are trying to achieve? With more context we can probably help more... |
||||
|
|
|
What you mean by "interrupted" is unclear. Interruption by Exception
If the Another thread can interrupt this one by calling "Interruption" from code If you're the one "interrupting" the code, it could be as simple as
Again, the lock is automatically released, whether or not there is an "interruption". Interruption because someone else is trying to acquire the lock Possibly this is what you're looking for; in this case you may want to use something else, like a |
||||||
|
|
|
I'm not sure what you're trying to get at here. The purpose of the What are you trying to accomplish here? |
||
|
|
|
|
You might also have a look at transaction scope, added in 2.0, which may be what you're looking for (unknown, due the ambiguity in your question). It allows you to attempt some actions, then roll back if those actions were not completed properly. See here for more details. |
||
|
|
