Skip to content

Instantly share code, notes, and snippets.

@dsebban
Created December 16, 2020 11:59
Show Gist options
  • Save dsebban/6b11e0c575bbde0457065145d3bb5043 to your computer and use it in GitHub Desktop.
Save dsebban/6b11e0c575bbde0457065145d3bb5043 to your computer and use it in GitHub Desktop.
def task(id: Int): Runnable = () =>
{
println(s"${Thread.currentThread().getName()} start-$id")
Thread.sleep(10000)
println(s"${Thread.currentThread().getName()} end-$id")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment