Skip to content

Instantly share code, notes, and snippets.

@sriramr98
Last active July 1, 2018 05:19
Show Gist options
  • Save sriramr98/dc8f50f8e8609787ccdf88d609cdefad to your computer and use it in GitHub Desktop.
Save sriramr98/dc8f50f8e8609787ccdf88d609cdefad to your computer and use it in GitHub Desktop.
Worker example for a medium article
class TasksRefreshWorker : Worker() {
override fun doWork(): Result {
// this method performs a task
doSomeLongRunningTask()
return Worker.Result.SUCCESS
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment