RunHyperlink29
Constructors
makeconstCreate a scoped handle with .run only — no live observation, no RPC.makeRunnerconstGeneric runner tag + layer — no observation, no handle shape, no RPC.ServiceconstClass factory: tag + wire schemas + baked-in .layer + .configure.TagconstDefine a run (concurrency-gated effect) as a named service Tag: class Backup extends RunHyperlink.Tag<Backup>()("@app/Backup", { payload: ArgsSchema }) {}.Layers & Serving
configureconstConfig-patch layer for a tag — merge with layer (Tag path).layerconstBuild a Layer from a tag and config — yields an observable toolkit service.layerMemoryconstAlias of layer.servefunctionServe this run gate and grant its local instance from one materialization.serveMemoryfunctionAlias of serve.serveRemotefunctionServe this run gate remotely (served-only) — RPC handlers without granting the local instance.serveRemoteMemoryfunctionAlias of serveRemote.storefunctionRegister this run gate on an app Store.Service — built-in analytics reads over run facts and state history (tier 3), with the tag's success / error wire slots.Models
RunGateHandletypeMinimal handle from RunHyperlink.make — .run only.RunGateStatustypeLive counters for an observable run gate.RunHyperlinkinterfaceA run-gate handle — the value yield MyRun produces.RunHyperlinkConfiginterfaceConfiguration for RunHyperlink.make — local scoped handle, no RPC.RunHyperlinkHandletypeObservable handle from RunHyperlink.make with observation disabled, or the local-only engine handle.RunHyperlinkLayerConfiginterfaceLayer / serve config — the tag carries wire schemas; this supplies the gated effect.RunHyperlinkLayerEffecttypeGated effect for layer / serve — unit gates (void input) accept a bare Effect.Effect or () => Effect; parameterized gates use (input) => Effect.RunHyperlinkRunnertypeA generic runner that wraps any effect with concurrency gating.RunHyperlinkRunnerConfiginterfaceConfiguration for RunHyperlink.makeRunner.RunHyperlinkServiceConfiginterfaceFull Service config — wire schemas and the gated effect in one object.RunHyperlinkServiceDefinitioninterfaceService factory result — tag surface plus baked-in layer and configure helpers.RunHyperlinkServiceEffecttypeGated effect for Service — same rules as RunHyperlinkLayerEffect at the decoded type.RunHyperlinkStaticRuntypeStatic .run shortcut on Tag / Service — adds the tag to R.RunHyperlinkTagDefinitiontypeTag factory result — Hyperlink tag + wire schemas + static RunHyperlinkStaticRun.RunHyperlinkTagSchemasinterfaceSchema-only options for Tag — pair with layer for the gated effect.RunHyperlinkWireSchemasinterfaceWire schemas shared by Tag and Service.