Hyperlinkv0.9.0-beta.0

WorkPool

WorkPool.QueueErrorCarrierinterfacesrc/WorkPool.ts:767

A phantom marker intersected onto a Tag to carry the worker error schema (E's schema) at the type level — the mirror of QueueSuccessCarrier. The layer / serve config constrains the worker's failure channel to this (default Schema.Never: no declared error → the worker must be infallible, or defect). Type-only — no runtime field; the runtime error schema rides the wire stamp.

modelsTagQueueSuccessCarrierSchema.Never
Source src/WorkPool.ts:7673 lines
export interface QueueErrorCarrier<Error extends Schema.Top = typeof Schema.Never> {
  readonly [queueErrorCarrierSym]?: Error;
}