Enum KernelWireKind
How an installed kernel's verified terminal must be wired into a hook or subscription pipeline. This is the single classification the host-side router (WireHook(InstalledKernel, WireOptions?) / WireSubscription(InstalledKernel, WireOptions?)) computes once from install-owned + verified metadata, replacing the per-host boolean lattice (is-local-terminal / is-result / is-result-local-terminal) every host used to hand-roll.
public enum KernelWireKind
Fields
Plain = 0Run the verified kernel entirely server-side (
Use).Projecting = 1Project server-side and push the projected value to the plugin's native delegate — a remote
RunLocal(UseProjecting).ProjectingResult = 3Filter server-side and request the result from the plugin process — a remote
RegisterLocal(UseProjectingResult).Result = 2The sandbox
Handleentrypoint returns the result directly — a sandboxRegister(UseResult).