Question

I need to know that When does a NSOperationQueue remove an operation from the queue? I have NSOperationQueue which has list of NSOperation. At which point the NSOperationQueue removes an operation from queue?

  1. After starting an operation? OR
  2. After Finish/Cancel an operation?

Because I need a notification when all the operations in NSOPerationqueue are finished. For this I referred this link

Was it helpful?

Solution

According to Apple Developer Reference

An operation queue executes its queued NSOperation objects based on their priority and readiness. After being added to an operation queue, an operation remains in its queue until it reports that it is finished with its task.

So, NSOperationQueue removes an operation after it has been finished.

Source - https://developer.apple.com/library/mac/documentation/Cocoa/Reference/NSOperationQueue_class/Reference/Reference.html

OTHER TIPS

NSOperationQueue manages its internal queue of NSOperations. An NSOperation will only be removed from the queue after it is canceled or finished.

Note that if an NSOperation is cancelled, it merely sets the appropriate flags within the NSOperation object to mark it as such - The implementation of the NSOperation is responsible for checking if it is cancelled and marking itself finished accordingly. An operation that has not started should check if it is cancelled when it starts and return immediately after marking itself finished. A long-running operation which is executing would need to periodically check if it is cancelled and handle that state in a similar manner.

It also makes sense to do this check before executing destructive code or code that will mutate data, such as saving or deleting a managed object from core data.

See https://developer.apple.com/reference/foundation/nsoperation/1411672-cancel?language=objc

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top