Threads

object Threads

Async utilities for running user code on different threads while having control/logging over them.

WARNING: Multithreading is a highly advanced topic where issues such as race conditions can arise. You must be fully aware of the consequences of threading and whether it is necessary for your program. For 99% of use cases, threading is not required for normal robot operation. Also note that there exists a global hardware lock for the SDK, so attempting to multi-thread hardware for loop times will drastically hinder robot performance. Threads are best used for blocking operations that do not access hardware reads and writes.

Tasks are scheduled through the SDK's default cached ThreadPool. Do note that by executing tasks on this pool, exceptions will not be rethrown to the OpMode thread when required (such as when an EmergencyStop is requested). Exceptions are still logged to the DS and Logcat in standard Exceptions fashion, and BunyipsOpMode tries to look for these exceptions manually to terminate the OpMode, but do note the reduced exception safety in a thread.

Threads started via this class are automatically shut down at the end of OpModes, via the stopAll method and a BunyipsLib Hook.

Author

Lucas Bubner, 2025

Since

7.0.0

Types

Link copied to clipboard
interface Result<T> : Future<T>

An extension of Future which allows additional configuration of the running task.

Functions

Link copied to clipboard

Check if a task is currently running.

Link copied to clipboard
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.

Link copied to clipboard

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.

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.

Link copied to clipboard
fun stop(task: Any?)
fun stop(task: String?)

Stop a specific task that is currently running.

Link copied to clipboard
@Hook(on = Hook.Target.POST_STOP, priority = 4)
fun stopAll()

Stops all thread tasks that are currently running.

Link copied to clipboard
fun task(task: Any?): Threads.Result<*>?

Gets a Result from the currently managed tasks by the supplied task.

Gets a Result from the currently managed tasks by the supplied name.