cedric
override fun newThread(r: Runnable?) = Thread(r).apply { isDaemon = true }
vinicius.rob.cunha
Executors.newSingleThreadScheduledExecutor({ r -> Thread(r).apply { isDaemon = true } })
A modern programming language that makes developers happier.