18

I'm implementing MVP pattern on an Andorid App and I have a doubt about where is the best place for checking the internet connection. I usually check if there is internet connection before doing any network call.

So, where should I check it in the Activity or in the Presenter? I think the Presenter would be a nice place, so it decides what to do, however I'm not 100% sure If I should place it in the activity and avoid doing a call to the Presenter.

Jose M Lechon
  • 5,766
  • 6
  • 44
  • 60

2 Answers2

12

I dont think Presenter is a good place. Presenter should ask the new data from the model, like getData(). Presenter should not know whether its from local database or from server. So checking the internet connection at the Presenter will not be a good idea.

If you use the Repository pattern, the Presenter will ask the model/repository to get the data. The model will send the local data to the presenter first. Parallely, it will send server request(if there is network connection) to download new data, and send the new data to the Presenter.

So I think, the network check must be at the Repository/ model. You could have Util class which implements the actual network check code. And call that method from repository, like AppUtil.isNetworkConnectionAvailable();

For more info, refer: https://github.com/googlesamples/android-architecture/tree/todo-mvp/

Bob
  • 13,447
  • 7
  • 35
  • 45
-1

Solution:-

You should check the internet connection availablity in BaseActivity class and then extend that activity is the better practice i think.

I do in my project like this:-

public boolean isInternetAvailable() {
    return internet.isAvailable();
}
Kailash Dabhi
  • 3,473
  • 1
  • 29
  • 47
  • Can you provide an example? I am doing this but the problem is that the broadcast receiver is too slow and its callback is triggered after the onCraete of the activity. – Motassem Jalal Jul 19 '17 at 14:37