start

fun <T> start(name: String, task: Callable<T?>): Threads.Result<T?>

Start a new thread task with the given Callable that may return a result.

A result does not need to be utilised (as it can be ignored), but one must be supplied via the Callable interface. You can choose to return a null value if there is no results you need.

For tasks that run repeatedly, consider startLoop, which takes in a Runnable.

Return

a Result of type T that can be used to retrieve the result of this task

Parameters

T

return type for the returned Result

name

the unique name of the task to access it later and to log as

task

the runnable task to run on the new thread