Janak-Nirmal / AFNetworking-ProxyQueue

AFNetworking with multiple operation queue support, to separate download operations from affecting too much on main network request.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AFNetworking-ProxyQueue

AFNetworking with multiple operation queue support, to separate download operations from affecting too much on main network request.

// Original
[[YourHTTPClient sharedClient] enqueueHTTPRequestOperation:usualNetworkOperation];

// Dispatch to another shared queue for download operation
[[YourHTTPClient sharedClient] proxyQueueNamed:@"downloadQueue"] enqueueHTTPRequestOperation:downloadOperation];

About

AFNetworking with multiple operation queue support, to separate download operations from affecting too much on main network request.