简体   繁体   中英

Reorder NSOperationQueue

I'm looking for a way to reorder an NSOperationQueue.

I could cancel all the operations and toss them back in using the order I want, but I was hoping for something a little bit cleaner. Any thoughts?

The major difference between NSOperationQueue and the underlying GCD queues is that NSOperation s support dependencies between operations. NSOperationQueue will not schedule an operation until all of its dependencies have completed. Of the available operations, the highest priority operation is chosen to run next.

Since the operation queue may run several operations simultaneously (according to maxConcurrentOperations ), there is not strict sense of order on the queue. You would be much better off using the dependencies API or changing operation prorities.

I believe that you can change dependencies and priorities after adding an operation to the queue.

There is no ability to re-order operations in a queue. If you need to express that one operation must come after another, use the dependencies API to do so.

See the NSOperationQueue documentation for more information. The first two paragraphs of the overview discuss dependencies.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM