Lets say I have something like this:
AFJSONRequestOperation *operation = ...
[operation start];
When operation start is called, where is that operation placed ? In which queue? Is there any global (for class) operation queue where this operation is placed and I can access this operation ?
Because I would need to call (in some cases) [operation stop] (maybe not called like that, but just to remove operation from queue, and to stop it) from another method, is there a way to do it ?
Or should I use instance variable AFJSONRequestOperation and then access it like that? Although I have many different operations and that would make me create many instance variables so if there is some other way.
Thank you.