procxy / Request
Interface: Request
Defined in: src/shared/protocol.ts:30
Method invocation request sent from parent to child. Includes unique ID for request/response correlation.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
args | Jsonifiable[] | Positional arguments forwarded to the method call | src/shared/protocol.ts:38 |
id | string | UUID v4 that pairs this request with its Response | src/shared/protocol.ts:32 |
prop | string | Name of the method to invoke on the remote class instance | src/shared/protocol.ts:36 |
type | "CALL" | Discriminant: always 'CALL' (only CALL is supported in v1) | src/shared/protocol.ts:34 |