I have one api that retrives a huge data , I set the timeout to 7 min no more than that. So when the waiting time exceeds 7 min I want the operation to be cancelled
However , the users sometimes wait till 10 min and more ..
Below is the code
   final OkHttpClient okHttpClient = new OkHttpClient.Builder()
            .connectTimeout(connectTimeOut, TimeUnit.SECONDS)
            .readTimeout(readTimeOut, TimeUnit.SECONDS)
            .build();
What I'm missing here?
 
    