Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. private boolean canRequest = true;
  2. void onResume(){
  3. if(canRequest){
  4. canRequest = false;
  5. fetchDataUsingRetroFit(new ResponseCallBack(){
  6. void onResponse(){
  7. canRequest = true;
  8. }
  9. });
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement