pub fn execute_remote_call(
request: RemoteCallRequest,
store: &SnapshotStore,
) -> RemoteCallResponseExpand description
Execute a remote call request on this machine.
This is the entry point for the receiving side. It:
- Reconstructs the
BytecodeProgramand populates itsTypeSchemaRegistry - Creates a full
VirtualMachinewith the program - Converts serialized arguments back to
ValueWord - Calls the function by name or ID
- Converts the result back to
SerializableVMValue
The store is used for SerializableVMValue ↔ ValueWord conversion
(needed for BlobRef-backed values like DataTable).