Enumerates all event types supported by the Lila event system.
These events represent key lifecycle and runtime actions in the live coding environment, such as client connections, code evaluation, symbol definition, and server state changes.
| Enumerator |
|---|
| ClientConnected | A client has connected to the server.
|
| ClientDisconnected | A client has disconnected from the server.
|
| EvalStart | Code evaluation has started.
|
| EvalSuccess | Code evaluation succeeded.
|
| EvalError | Code evaluation failed.
|
| SymbolDefined | A new symbol was defined in the interpreter.
|
| ServerStart | The server has started.
|
| ServerStop | The server has stopped.
|
Definition at line 12 of file EventBus.hpp.
12 : uint8_t {
13 ClientConnected,
14 ClientDisconnected,
15 EvalStart,
16 EvalSuccess,
17 EvalError,
18 SymbolDefined,
19 ServerStart,
20 ServerStop
21};