取消线程中工作的GCD块

发布于 2024-11-09 00:43:04 字数 291 浏览 0 评论 0原文

我有以下块在后台执行请求。
在该请求完成之前我如何取消该请求?

    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_async(queue, ^{
        NSData *thumbnailData = [NSURLConnection sendSynchronousRequest:request];
        ...
    });

I have the following block which performs a request in the background.
How may I cancel this request before it has completed?

    dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_async(queue, ^{
        NSData *thumbnailData = [NSURLConnection sendSynchronousRequest:request];
        ...
    });

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

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

发布评论

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

评论(3

深者入戏 2024-11-16 00:43:04

一旦发送就无法取消...

您可以使用解决方法,例如:

dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
__block BOOL isCanceled = NO;
dispatch_async(queue, ^{

    if (isCanceled)
        return;

    NSData *thumbnailData = [NSURLConnection sendSynchronousRequest:request];
    ...
});

You can't cancel once you've dispatched...

You can use a workaround, like:

dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
__block BOOL isCanceled = NO;
dispatch_async(queue, ^{

    if (isCanceled)
        return;

    NSData *thumbnailData = [NSURLConnection sendSynchronousRequest:request];
    ...
});
喜爱纠缠 2024-11-16 00:43:04

您可以使用更高级别的“NSOperationQueue”,将操作添加到队列后,然后您可以取消所有操作。

You can use the higher level "NSOperationQueue", after adding the operation to queue, then you can cancelAllOperations.

心意如水 2024-11-16 00:43:04

你不能。您必须使用 NSURLConnection 的异步接口才能取消请求。

You can't. You have to use the asynchronous interface of NSURLConnection to be able to cancel requests.

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