Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
901 views
in Technique[技术] by (71.8m points)

objective c - Manage the number of active tasks in a background NSURLSession

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?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...