Modules§
- config
- env
- mailbox
- message
- The
Message
is a special variant of aSignal
that can be sent to processes. The most common kind of Message is aDataMessage
, but there are also some special kinds of messages, like theMessage::LinkDied
, that is received if a linked process dies. - runtimes
- WebAssembly runtimes powering lunatic.
- state
- wasm
Structs§
- Execution
Result - Native
Process - A process spawned from a native Rust closure.
- Wasm
Process - A
WasmProcess
represents an instance of a Wasm module that is being executed.
Enums§
- Death
Reason - Finished
- The reason of a process finishing
- Result
Value - Signal
- Signals can be sent to processes to interact with them.
Traits§
- Process
- The
Process
is the main abstraction in lunatic.
Functions§
- spawn
- Spawns a process from a closure.