Category
Actors
Execution contexts and actor communication.Category guide
Overview
Use this overview to understand the category before opening a specific function.- See what this group of functions is meant to solve.
- Compare function names and descriptions in one table.
- Open a function for syntax, arguments, returns, and examples.
Actors
Available functions
| Function | Description |
|---|---|
create_comm_channel | Creates a communication channel for actor or thread coordination. |
get_comm_channel | Returns the communication event for a channel id. |
getactorfromthread | Returns the Actor associated with a thread. |
getactors | Returns Actor instances known to the runtime. |
getactorthreads | Returns threads associated with Actor execution. |
getcurrentactor | Returns the Actor for the current execution context. |
getdeletedactors | Returns Actor instances that were removed but are still tracked. |
isparallel | Returns whether the current context is running in a parallel Actor state. |
run_on_actor | Runs source code inside the context of a target Actor. |
run_on_thread | Runs source code on a specific thread context. |