Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Has anyone implemented Futures in Objective-C? I (hopefully not naively) assume that it should be reasonably simple to wrap NSInvocations in a nice API?

share|improve this question

3 Answers

MPWFoundation has futures based on Higher Order Messaging:

Assuming you have a regular computation with a message computeResult:

result = [someObject computeResult];

prefixing that message with the future message will compute the result in the background:

result = [[someObject future] computeResult];

The object in result is a proxy that will block when messages are sent to it until the value is received.

share|improve this answer

Apple's documentation on blocks in Grand Central Dispatch may be of interest.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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