TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Francis Chong.
Futures pattern in Objective-C.
Inspired by futuristic, I want to see if it is possible to be done in Objective-C. Turns out it has been done previously (a.k.a. MAFuture), but why not reinvent it?
This is highly experimental, so use it at your own risk!
NSDate* now = [NSDate date];
NSDate* later = (NSDate*) [[IGFuture alloc] initWithBlock:^id{
// perform some long running task
[NSThread sleepForTimeInterval:1];
// return the value
return [NSDate date];
}];
expect([later timeIntervalSinceDate:now]).to.beCloseToWithin(1, 0.01);
The future block run immediately in background. When it is needed (at [later timeIntervalSinceDate:now]
) and the result is available, it returns immediately. If it is still running, it block and wait for completion.
If you want the future only calculate the results when it is needed, use -initWithLazyBlock:
.
Note "later" which is a IGFuture object can be used as a NSDate (the returned value of the block).
IGFuture* future = [[IGFuture alloc] initWithBlock:^id{
// perform some long running task
[NSThread sleepForTimeInterval:3.0];
return @[@"1", @"2", @"3", @"4", @"5", @"6", @"7", @"8", @"9", @"10"];
}];
future.completionBlock = ^(NSArray* data) {
self.data = data;
dispatch_async(dispatch_get_main_queue(), ^{
[self.tableView reloadData];
});
};
In your Podfile
pod 'IGFuture', '~> 0.2.1'
Copyright (c) 2013 Francis Chong. This software is licensed under the MIT License. See LICENSE for details.