Manage the number of active tasks in a background NSURLSession

落花浮王杯 提交于 2019-11-29 15:57:13

In the class that is responsible for enqueueing tasks, have a ivar to track the active tasks, e.g.

// In MySessionWrapper.m

@interface MySessionWrapper () {
    NSMutableSet *activeTaskIds;
}
@end

When you enqueue a task, you add its ID to that set:

[activeTaskIds addObject:@([task taskIdentifier])]

When you get a didComplete callback, you remove the ID, and if the number of active tasks falls below your target, you add more tasks:

- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error
{
    // other stuff
    [activeTaskIds removeObject:@([task taskIdentifier])]

    if ([activeTaskIds count] < NUMBER) {
        // add more tasks
    }
}

This system is working for me now.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!