添加到 NSOperationQueue 时,具有依赖关系的 NSOperation 不会被执行

发布于 2025-01-02 04:00:22 字数 752 浏览 1 评论 0原文

我试图弄清楚为什么带有依赖项的 NSOperation 在添加到 NSOperationQueue (iOS5,ARC)时没有被执行:

@implementation NSOperationTest {
    NSOperationQueue *_operationQueue;
}

- (id)init {
    self = [super init];
    if (self) {
        _operationQueue = [[NSOperationQueue alloc] init];
    }
    return self;
}

-(void) test
{
    NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
        NSLog(@"op1 running");
    }];

    NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{
        NSLog(@"op2 running");
    }];

    [op2 addDependency:op1];
    [_operationQueue addOperation:op2];
}
@end

这让我发疯,这里 op1 应该在 op2,但其中任何一个都会被执行,当添加没有依赖项时,两者都可以正常工作。有人知道为什么吗?

提前致谢。

I'm trying to figure out why a NSOperation with a dependency is not being executed when added to NSOperationQueue (iOS5, ARC):

@implementation NSOperationTest {
    NSOperationQueue *_operationQueue;
}

- (id)init {
    self = [super init];
    if (self) {
        _operationQueue = [[NSOperationQueue alloc] init];
    }
    return self;
}

-(void) test
{
    NSBlockOperation *op1 = [NSBlockOperation blockOperationWithBlock:^{
        NSLog(@"op1 running");
    }];

    NSBlockOperation *op2 = [NSBlockOperation blockOperationWithBlock:^{
        NSLog(@"op2 running");
    }];

    [op2 addDependency:op1];
    [_operationQueue addOperation:op2];
}
@end

This is getting me crazy, here op1 is supposed to be executed before op2, but either is executed, when added without dependencies both works just fine. Does someone knows why?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

温暖的光 2025-01-09 04:00:22

您必须向操作队列显式执行任何操作(或直接执行它)才能执行 - 依赖项也不例外。如果不这样做(就像您所做的那样),op2 将永远不会执行,因为它正在等待 op1 执行,而 op1 从未被告知过执行。因此,通过在 test 方法末尾添加 [_operationQueue addOperation: op1]; ,您的问题应该得到解决。

You have to explicitly any operation to the operation queue (or execute it directly) in order for it to execute - and dependencies are no exception. Without doing so (as you've done) op2 will never execute because it is waiting for op1 to execute, when op1 has never been told to execute. So by adding [_operationQueue addOperation: op1]; at the end of your test method, your problem should be fixed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文