-3

enter code hereWhat is difference between NSoperations and NSoperationqueues?

Thanks keerthi

DD_
  • 7,230
  • 11
  • 38
  • 59
Keerthi
  • 43
  • 7

1 Answers1

0

The NSOperation class is an abstract class you use to encapsulate the code and data associated with a single task.

The NSOperationQueue class regulates the execution of a set of NSOperation objects. After being added to a queue, an operation remains in that queue until it is explicitly canceled or finishes executing its task.

you can also check these links..because they have given the nice answer:-

Difference between NSOperation and NSInvocationOperation?

http://www.raywenderlich.com/19788/how-to-use-nsoperations-and-nsoperationqueues

Community
  • 1
  • 1
Kundan
  • 3,084
  • 2
  • 28
  • 65