(env: Envelope)
| 284 | // -- write path -------------------------------------------------------- |
| 285 | |
| 286 | #write(env: Envelope): void { |
| 287 | const stdin = this.#stdin; |
| 288 | if (!stdin) throw new ConnectionError("cmdop-core not running"); |
| 289 | stdin.write(sizeDelimitedEncode(EnvelopeSchema, env)); |
| 290 | } |
| 291 | |
| 292 | // -- call entry points (used by generated resources) ------------------- |
| 293 |