NSOperationQueue , . -, ... .
GCD, , NSOperationQueue.
, , -.
, , , .
, I/O, , dispatch_io . Monk : " ".
:
- (void)userRequestedNewSearch:(SearchInfo*)searchInfo {
uint32_t token = [self nextOperationToken];
dispatch_async(myQueue, ^{
while (! loadIsComplete) {
if ([self currentToken] != token) return;
}
dispatch_async(dispatch_get_main_queue(), ^{
if ([self currentToken] != token) return;
});
});
}
, . NSOperationQueue, cancelAllOperations, , .