Manage the number of active tasks in a background NSURLSession

只愿长相守 提交于 2019-11-28 09:26:06

问题


It seems that when you enqueue too many tasks (say, hundreds) on a background NSURLSession, it doesn't work well. How can you keep the number of enqueued tasks at a small fixed number, say 10?


回答1:


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.



来源:https://stackoverflow.com/questions/22840115/manage-the-number-of-active-tasks-in-a-background-nsurlsession

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