NSOperation gets completed before background task are over

437 Views Asked by At

NSOperation gets completed before background task are over

I am calling and NSOperation and have set max concurrent task 2 NSOperation calls some background methods but NSOperation does not wait for the background tasks to be completed  and get removed from the queue so next operation starts which I do not want Please help, how to let NSOperation continue till the background task gets completed.

2

There are 2 best solutions below

0
On BEST ANSWER

I hope you may get your answer here in

  1. Stackoverflow post.

  2. StackOverflow Discussion

0
On

NSOperation KVO's it's properties isFinished and isExecuting. From documentation

Upon completion or cancellation of its task, your concurrent operation object must generate KVO notifications for both the isExecuting and isFinished key paths to mark the final change of state for your operation. (In the case of cancellation, it is still important to update the isFinished key path, even if the operation did not completely finish its task. Queued operations must report that they are finished before they can be removed from a queue.) In addition to generating KVO notifications, your overrides of the isExecuting and isFinished methods should also continue to return accurate values based on the state of your operation.

Basically when you generate a notification isFinished = YES and isExecuting = NO, your NSOperation will be removed from the queue.