:@async
@async
Like @schedule
, @async
wraps an expression in a Task
and adds it to the local machine's scheduler queue. Additionally it adds the task to the set of items that the nearest enclosing @sync
waits for. @async
also wraps the expression in a let x=x, y=y, ...
block to create a new scope with copies of all variables referenced in the expression.
Examples
See Also
:@async, :@schedule, :@task, Condition, consume, interrupt, istaskdone, istaskstarted, lock, notify, ReentrantLock, schedule, Task, task_local_storage, unlock, wait, yield, yieldto,User Contributed Notes
Add a Note
The format of note supported is markdown, use triple backtick to start and end a code block.