即使操作队列被挂起,AFHTTPRequestOperation 仍在运行

Posted

技术标签:

【中文标题】即使操作队列被挂起,AFHTTPRequestOperation 仍在运行【英文标题】:AFHTTPRequestOperation still running even the operation queue is suspended 【发布时间】:2013-10-21 15:50:26 【问题描述】:

我正在使用最新的 AFNetworking V2.0。如果可达性可用,我已经设置了要在 AFHTTPRequestOperationManager 的操作队列上运行的一系列操作。我在 appDelegate 中设置了一个全局 AFHTTPRequestOperationManager 并使用它来检查可达性,当可达性不可用时,我暂停 AFHTTPRequestOperationManager 的操作队列以避免运行操作。当可达性恢复时,我将 isSuspended 设置为 false 以重新启动操作。

我现在遇到的问题是,即使我已将 isSuspended 设置为 YES,但当可达性不可用时,操作队列仍然会触发并进入操作的失败块。

这是我的设置,

AppDelegate.m

self.reachManager = [[AFHTTPRequestOperationManager alloc] initWithBaseURL:[NSURL URLWithString:API_SERVER_URL]];
self.reachManager.responseSerializer = [AFJSONResponseSerializer serializer];
__block NSOperationQueue *operationQueue = self.reachManager.operationQueue;
[operationQueue setMaxConcurrentOperationCount:1];

__block AppDelegate * weakSelf = self;

[self.reachManager.reachabilityManager setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) 
    switch (status) 
        case AFNetworkReachabilityStatusNotReachable:
            NSLog(@"not reachable");
            [operationQueue setSuspended:YES];
            [weakSelf showReachabilityAlert:YES];

            break;
        case AFNetworkReachabilityStatusReachableViaWiFi:
            [weakSelf showReachabilityAlert:NO];
            [operationQueue setSuspended:NO];
            break;
        case AFNetworkReachabilityStatusReachableViaWWAN:
            [weakSelf showReachabilityAlert:NO];
            [operationQueue setSuspended:NO];
            break;
        default:
            [weakSelf showReachabilityAlert:NO];
            [operationQueue setSuspended:YES];
            break;
    
];

[self.reachManager.reachabilityManager startMonitoring];

视图控制器

AppDelegate *ad = [[UIApplication sharedApplication] delegate];
NSMutableArray *mutableOperations = [NSMutableArray array];
NSArray * data = [NSArray arrayWithObjects:@"media", @"analysis", nil];

for(NSString * c in data)

    NSURL *URL = [NSURL URLWithString:[NSString stringWithFormat:API_SERVER_SECTION_URL, c]];
    NSURLRequest *request = [NSURLRequest requestWithURL:URL];
    AFHTTPRequestOperation *op = [[AFHTTPRequestOperation alloc] initWithRequest:request];
    op.responseSerializer = [AFJSONResponseSerializer serializer];

    [op setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) 

            NSLog(@"JSON: received for tag %@", c);

     failure:^(AFHTTPRequestOperation *operation, NSError *error) 
        NSLog(@"Error message : %@", error);
    ];

    [mutableOperations addObject:op];


NSArray *operations = [AFURLConnectionOperation batchOfRequestOperations:mutableOperations progressBlock:^(NSUInteger numberOfFinishedOperations, NSUInteger totalNumberOfOperations) 
    NSLog(@"%d of %d complete", numberOfFinishedOperations, totalNumberOfOperations);
 completionBlock:^(NSArray *operations) 
    NSLog(@"All operations in batch complete");


];

//Check the reachability and suspend the opearation queue if there is no reachability
if([ad.reachManager.reachabilityManager isReachable])
    [ad.reachManager.operationQueue setSuspended:NO];
else
    [ad.reachManager.operationQueue setSuspended:YES];

[ad.reachManager.operationQueue addOperations:operations waitUntilFinished:YES];

没有网络时如何暂停操作队列?并在互联网恢复时重新启动队列?

谢谢, 安东尼

【问题讨论】:

我终于弄明白了。这不是 AFNetworking 问题。问题是在触发可达性块之前以某种方式启动了操作队列执行。如果有人感兴趣,我已经用最终代码编辑了我以前的代码。 您应该将其发布为答案并接受它。 你有没有做到这一点,因为我仍然遇到同样的错误 是的..它对我来说工作正常..你得到什么错误? 【参考方案1】:

如果有人感兴趣,我已经用最终代码编辑了我之前的代码。

【讨论】:

以上是关于即使操作队列被挂起,AFHTTPRequestOperation 仍在运行的主要内容,如果未能解决你的问题,请参考以下文章

阻塞队列

第238天学习打卡(知识点回顾 阻塞队列)

交换技术(swaping) 视频11

锁屏后,前台service被挂起的一个解决方法

Linux设备驱动中的阻塞和非阻塞I/O

018_linux驱动之_阻塞和非阻塞