Since the AFNetworking 2.0
the AFHTTPClient
has been vanished in the favour of two managers: AFHTTPRequestOperationManager
and AFHTTPSessionManager
. The migration guide says pretty much nothing about the cases when each of them is preferable to use. As far as I can see the basic interaction with a RESTful JSON API
can be implemented using each of them separately.
What are the most suitable cases to use either RequestOperationManager
or SessionManager
?