Guest User

Untitled

a guest
Nov 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. @NonNull
  2. @Override
  3. public Result doWork() {
  4. if(Util.isInternetConnected()){
  5. // do something
  6. return Result.SUCCESS;
  7. }
  8. else {
  9. return Result.FAILURE;
  10. }
  11. // (Returning RETRY tells WorkManager to try this task again
  12. // later; FAILURE says not to try again.)
  13. }
Add Comment
Please, Sign In to add comment