vote up 2 vote down star

Is there an equivalent of the .NET ManualResetEvent class available for use in Objective-C / Cocoa?

flag

68% accept rate

2 Answers

vote up 4 vote down check

I'm not very familiar with ManualResetEvent, but based on the documentation, it looks like the NSCondition class might be what you are looking for.

NSCondition is by no means an exact equivalent, but it does provide similar signaling functionality. You might also want to read up on NSLock.

link|flag
Reading up on the doc's this appears to do exactly what I needed. Thanks! – Lounges Jul 7 at 23:19
vote up 0 vote down

Ah, those are poor man's condition variables.

You could use the NSCondition class, but I think it's better
to go straight to the source. Start with pthread_cond_init.

You gonna love it.

link|flag
NSCondition is a higher-level wrapper around pthreads. If the NSCondition/NSLock interface does the job, there's no need to go low-level. – Naaff Jul 8 at 1:21
Well I guess you could do it the easy way. – Rhythmic Fistman Jul 8 at 8:51

Your Answer

Get an OpenID
or

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