You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default HttpClient caches only GET requests. This option allows to cache specific request types: CacheMode(cacheResponse: true, returnCachedResponse: true, invokeRequest: true, cacheHttpMethods: [.get, .post, .put])
Added ability to pass custom delegate for UrlSession
HttpClient now can be initialized with custom implementation of NSURLSessionDataEventsObserverType (which is derived from URLSessionDataDelegate) in order to allow additional customization.
Add RequestPluginType protocol that receives callbacks from HttpClient and StreamDataTask.
Only one plugin now available: NetworkActivityIndicatorPlugin (shows network activity if there is active network request).