startLoop

fun startLoop(name: String, minLoopTime: Measure<Time>, loopTask: Runnable): Threads.Result<*>

Start a new thread task with the given infinite loop task. These tasks are not designed to return any results, although a Result will be returned to you if required.

This will auto-end when the task is interrupted.

Return

an unbounded Result for the task, note this will never naturally get a result

Parameters

name

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

minLoopTime

the minimum duration this loop should run at to save resources, will be slower if your loop takes longer than the minimum

loopTask

the infinite loop task to run on the new thread, contains no result as it is an infinite loop


Start a new thread task with the given infinite loop task. These tasks are not designed to return any results, although a Result will be returned to you if required. This task loops at the maximum speed possible by the CPU.

This will auto-end when the task is interrupted.

Return

an unbounded Result for the task, note this will never naturally get a result

Parameters

name

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

loopTask

the infinite loop task to run on the new thread, contains no result as it is an infinite loop