vote up 4 vote down star

I need to try to lock on an object, and if its already locked just continue (after time out, or without it).

the C# lock statement is blocking.

flag

3 Answers

vote up 6 vote down check

I believe that you can use Monitor.TryEnter(). Here is the MSDN entry

http://msdn.microsoft.com/en-us/library/system.threading.monitor.tryenter(VS.71).aspx

The lock statement just translates to a Monitor.Enter() call and a try catch block.

@Jeff: Thanks for the edit, I need to go and look at the markdown syntax.

link|flag
vote up 7 vote down

Ed's got the right function for you. Just don't forget to call Monitor.Exit(). You should use a try-finally block to guarantee proper cleanup.

if (Monitor.TryEnter(someObject))
{
    try
    {
        // use object
    }
    finally
    {
        Monitor.Exit(someObject);
    }
}
link|flag
vote up 2 vote down

You'll probably find this out for yourself now that the others have pointed you in the right direction, but TryEnter can also take a timeout parameter.

Jeff Richter's "CLR Via C#" is an excellent book on details of CLR innards if you're getting into more complicated stuff.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.