Skip to content

Instantly share code, notes, and snippets.

@ErikHellman
Last active January 16, 2018 07:09
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 ErikHellman/f80c2a578455b103aa7086054f80fbff to your computer and use it in GitHub Desktop.
Save ErikHellman/f80c2a578455b103aa7086054f80fbff to your computer and use it in GitHub Desktop.
Background Thread Function
fun launchBackgroundJob(job: () -> Unit) {
thread { job() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment