Connects to an already-running runtime at the specified URL. Construct via :meth:`RuntimeConnection.uri`.
| 387 | |
| 388 | @dataclass |
| 389 | class UriRuntimeConnection(RuntimeConnection): |
| 390 | """Connects to an already-running runtime at the specified URL. |
| 391 | |
| 392 | Construct via :meth:`RuntimeConnection.uri`. |
| 393 | """ |
| 394 | |
| 395 | url: str = "" |
| 396 | """URL of the runtime to connect to. Accepts ``"port"``, ``"host:port"``, or a full URL.""" |
| 397 | |
| 398 | connection_token: str | None = None |
| 399 | """Shared secret to authenticate the connection.""" |
| 400 | |
| 401 | |
| 402 | @dataclass |
no outgoing calls
searching dependent graphs…