|
Groovy JDK |
Method Summary | |
---|---|
static Thread
|
start(Closure closure)
Start a Thread with the given closure as a Runnable instance |
static Thread
|
start(String name, Closure closure)
Start a Thread with a given name and the given closure as a Runnable instance |
static Thread
|
startDaemon(Closure closure)
Start a daemon Thread with the given closure as a Runnable instance |
static Thread
|
startDaemon(String name, Closure closure)
Start a daemon Thread with a given name and the given closure as a Runnable instance |
Method Detail |
---|
public static Thread start(Closure closure)
closure
- the Runnable closure.
public static Thread start(String name, Closure closure)
name
- the name to give the thread.
closure
- the Runnable closure.
public static Thread startDaemon(Closure closure)
closure
- the Runnable closure.
public static Thread startDaemon(String name, Closure closure)
name
- the name to give the thread.
closure
- the Runnable closure.
|
Groovy JDK |