Enum KernelWireKind
Namespace: DotBoxD.Plugins
Assembly: DotBoxD.Plugins.dll
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 (DotBoxD.Plugins.PluginServer.WireHook(DotBoxD.Plugins.Kernel.InstalledKernel,DotBoxD.Plugins.WireOptions) /
DotBoxD.Plugins.PluginServer.WireSubscription(DotBoxD.Plugins.Kernel.InstalledKernel,DotBoxD.Plugins.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 KernelWireKindFields
Section titled “Fields”Plain = 0
Run the verified kernel entirely server-side (Use).
Projecting = 1
Project server-side and push the projected value to the plugin’s native delegate — a remote RunLocal (UseProjecting).
ProjectingResult = 3
Filter server-side and request the result from the plugin process — a remote RegisterLocal (UseProjectingResult).
Result = 2
The sandbox Handle entrypoint returns the result directly — a sandbox Register (UseResult).