Created
July 9, 2019 19:35
-
-
Save gbajaj/a74de1dbec17514e6b0910e8cdbd3d0c to your computer and use it in GitHub Desktop.
DoInBackgroundCancel.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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