Skip to content

Instantly share code, notes, and snippets.

@brainail
Last active May 10, 2018 15:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brainail/6e26d06d504ae9937f513f0e6e10d9f5 to your computer and use it in GitHub Desktop.
Save brainail/6e26d06d504ae9937f513f0e6e10d9f5 to your computer and use it in GitHub Desktop.
fun observeMyWorkPlease() {
WorkManager.getInstance().getStatusById(hardWorkId).observe(lifecycleOwner, workStatus -> {
if (null != workStatus && workStatus.state.isFinished()) {
// let's rock!
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment