List of functions and data types in Threads
Thread<b> create(b() fn)
Arguments
fn: The parameterless function to execute.
Usage
Create a new thread that executes the specified function. waitFor may be used to find the return value of the function.
Related