Start a Project

Drop the current HTTP request in URLSession using swift 3

Drop Request

In most of the time user switch between one page to another or one controller to another using tab bar icon without waiting for its result. due to this reason multiple network request ongoing and application becomes slow, it’s better to dismiss all its previous network request and keep only current network request so we can get the data fast. here I have taken the example of URLSession request:

1: Define the global class where we have to make a network request and with the help of delegate method, we can get the data to the respective class.

2: Lets we have a global class like:

Note:

a: here task is a global variable.

b:  if let error = error as NSError?, error.domain == NSURLErrorDomain && error.code == NSURLErrorCancelled { }

This one detects when we cancel the previous task.

If this will execute we will nothing to do otherwise we are maintaining the server error response.

3: in every view controller we are doing this:

4: define this method in the global class where we have written the network request.

5: Now this will cancel the previous request and load the current request.

Exit mobile version