# Class: com.pnfsoftware.jeb.util.concurrent.DaemonExecutors

Static routines to create daemon thread pools. Mirrors [Executors](Executors).

## Constructor: DaemonExecutors


## Static Method: newCachedThreadPool
- return type: `java.util.concurrent.ExecutorService`

Description: Create a cached daemon\-thread executor service.
return: a cached thread pool whose worker threads are daemon threads

## Static Method: newFixedThreadPool
- parameter: `nThreads`, type: `int`
- return type: `java.util.concurrent.ExecutorService`

Description: Create a fixed\-size daemon\-thread executor service.
parameter: nThreads: number of worker threads
return: a fixed thread pool whose worker threads are daemon threads

## Static Method: newSingleThreadExecutor
- return type: `java.util.concurrent.ExecutorService`

Description: Create a single daemon\-thread executor service.
return: a single\-thread executor whose worker thread is a daemon thread

