Skip to content

Instantly share code, notes, and snippets.

@gbajaj
Created July 9, 2019 19:35
Show Gist options
  • Save gbajaj/a74de1dbec17514e6b0910e8cdbd3d0c to your computer and use it in GitHub Desktop.
Save gbajaj/a74de1dbec17514e6b0910e8cdbd3d0c to your computer and use it in GitHub Desktop.
DoInBackgroundCancel.java
DoInBackground(. . . ) {
//Doing some work
if (isCancelled()) {
// we are cancelled, no need to do any work now
. . .
// Did we override implement onCancelled() or onCancelled(Object)?
}
for (CurrentWork : ListOfWorks) {
if (isCancelled()) {
// we are cancelled, no need to do any work now
. . .
// Did we override implement onCancelled() or onCancelled(Object)?
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment