Uses of Class
org.praxislive.code.userapi.Async
-
Packages that use Async Package Description org.praxislive.code org.praxislive.code.userapi -
-
Uses of Async in org.praxislive.code
Methods in org.praxislive.code that return Async Modifier and Type Method Description Async<Call>
CodeDelegate. ask(ControlAddress destination, Object... args)
Call a Control.Async<Call>
CodeDelegate. ask(ControlAddress destination, List<Value> args)
Call a Control.<T,R>
Async<R>CodeDelegate. async(T input, Async.Task<T,R> task)
Run a task asynchronously and outside of the component context. -
Uses of Async in org.praxislive.code.userapi
Methods in org.praxislive.code.userapi that return Async Modifier and Type Method Description Async<T>
Async.Queue. add(Async<T> async)
Add an Async to the queue.Async<T>
Async.Queue. poll()
Retrieves and removes the next completed Async, if available.Methods in org.praxislive.code.userapi that return types with arguments of type Async Modifier and Type Method Description List<Async<T>>
Async.Queue. clear()
Clear all Async from the queue.List<Async<T>>
Async.Queue. limit(int size)
Limit the queue to the provided size.Methods in org.praxislive.code.userapi with parameters of type Async Modifier and Type Method Description Async<T>
Async.Queue. add(Async<T> async)
Add an Async to the queue.boolean
Async.Queue. remove(Async<T> async)
Remove the provided Async from the queue.Ref<T>
Ref. setAsync(Async<T> async)
Set the value from completion of the providedAsync
.Method parameters in org.praxislive.code.userapi with type arguments of type Async Modifier and Type Method Description void
Async.Queue. onDone(Consumer<Async<T>> handler)
Attach a handler for completed Async.
-