|
Scala example source code file (DaemonThreadFactory.scala)
The Scala DaemonThreadFactory.scala source code
/* NSC -- new Scala compiler
* Copyright 2005-2011 LAMP/EPFL
* @author Paul Phillips
*/
package scala.tools.nsc
package io
import java.util.concurrent._
class DaemonThreadFactory extends ThreadFactory {
def newThread(r: Runnable): Thread = {
val thread = new Thread(r)
thread setDaemon true
thread
}
}
object DaemonThreadFactory {
def newPool() = Executors.newCachedThreadPool(new DaemonThreadFactory)
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala DaemonThreadFactory.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.