OutputCollector
Defined in: src/types.ts:344
Accumulates output batches during a produce/exchange call. Enforces that exactly one data batch is emitted per call (plus any number of log batches).
Implements
Section titled “Implements”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new OutputCollector( outputSchema, producerMode?, serverId?, requestId?, authContext?, cookies?, kind?, budgets?): OutputCollector;Defined in: src/types.ts:364
Parameters
Section titled “Parameters”| Parameter | Type | Default value | Description |
|---|---|---|---|
outputSchema | VgiSchema | undefined | - |
producerMode | boolean | true | - |
serverId | string | "" | - |
requestId | string | null | null | - |
authContext? | AuthContext | undefined | - |
cookies? | ReadonlyMap<string, string> | undefined | - |
kind? | TransportKind | undefined | - |
budgets? | { externalizationEnabled?: boolean; remainingExternalizedResponseBytes?: number; remainingResponseBytes?: number; } | undefined | Snapshot budget fields exposed to worker code via CallContext. Optional — non-HTTP transports omit them and existing call sites remain source-compatible. |
budgets.externalizationEnabled? | boolean | undefined | - |
budgets.remainingExternalizedResponseBytes? | number | undefined | - |
budgets.remainingResponseBytes? | number | undefined | - |
Returns
Section titled “Returns”OutputCollector
Properties
Section titled “Properties”readonly auth: AuthContext;Defined in: src/types.ts:357
Authenticated principal for this call; AuthContext.anonymous when the request was not authenticated.
Implementation of
Section titled “Implementation of”cookies
Section titled “cookies”readonly cookies: ReadonlyMap<string, string>;Defined in: src/types.ts:358
Incoming request cookies. Empty for non-HTTP transports.
Implementation of
Section titled “Implementation of”externalizationEnabled?
Section titled “externalizationEnabled?”readonly optional externalizationEnabled?: boolean;Defined in: src/types.ts:362
True iff the server has an externalisation backend wired up.
Implementation of
Section titled “Implementation of”CallContext.externalizationEnabled
readonly optional kind?: TransportKind;Defined in: src/types.ts:359
Coarse identifier of the bound transport, or undefined until the
server begins serving (the value is committed by the lifecycle hook
on the very first request).
Implementation of
Section titled “Implementation of”remainingExternalizedResponseBytes?
Section titled “remainingExternalizedResponseBytes?”readonly optional remainingExternalizedResponseBytes?: number;Defined in: src/types.ts:361
External-channel bytes left this iteration. Always a hard cap — externalised uploads have no escape valve like producer continuation tokens. Undefined when no cap is configured or externalisation is disabled.
Implementation of
Section titled “Implementation of”CallContext.remainingExternalizedResponseBytes
remainingResponseBytes?
Section titled “remainingResponseBytes?”readonly optional remainingResponseBytes?: number;Defined in: src/types.ts:360
Wire body bytes the framework will accept this iteration before
triggering a continuation token (producer streams) or strict-fail
with an EXCEPTION batch (unary / stream-exchange). Snapshot at
collector construction; not live. undefined when no cap is
configured or the transport doesn’t expose one (stdio).
Implementation of
Section titled “Implementation of”CallContext.remainingResponseBytes
Accessors
Section titled “Accessors”batches
Section titled “batches”Get Signature
Section titled “Get Signature”get batches(): EmittedBatch[];Defined in: src/types.ts:488
Batches emitted so far this call — the single data batch plus any log batches, in emission order. Consumed by the dispatch layer.
Returns
Section titled “Returns”EmittedBatch[]
finished
Section titled “finished”Get Signature
Section titled “Get Signature”get finished(): boolean;Defined in: src/types.ts:482
True once finish has been called (producer streams only).
Returns
Section titled “Returns”boolean
outputSchema
Section titled “outputSchema”Get Signature
Section titled “Get Signature”get outputSchema(): VgiSchema;Defined in: src/types.ts:477
Schema of the data batches this collector emits.
Returns
Section titled “Returns”VgiSchema
session
Section titled “session”Get Signature
Section titled “Get Signature”get session(): unknown;Defined in: src/types.ts:440
Live sticky-session state object, or null when no session is bound to
this request. HTTP-only — other transports always return null.
Returns
Section titled “Returns”unknown
Live sticky-session state object, or null when no session is bound to
this request. HTTP-only — other transports always return null.
Implementation of
Section titled “Implementation of”sessionId
Section titled “sessionId”Get Signature
Section titled “Get Signature”get sessionId(): string | null;Defined in: src/types.ts:444
Opaque 24-char-hex session ID, or null when no session is bound.
Survives closeSession so post-close access-log records still
carry the id.
Returns
Section titled “Returns”string | null
Opaque 24-char-hex session ID, or null when no session is bound.
Survives closeSession so post-close access-log records still
carry the id.
Implementation of
Section titled “Implementation of”Methods
Section titled “Methods”clientLog()
Section titled “clientLog()”clientLog( level, message, extra?): void;Defined in: src/types.ts:537
Emit a zero-row client-directed log batch.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
level | string |
message | string |
extra? | Record<string, string> |
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”closeSession()
Section titled “closeSession()”closeSession(): void;Defined in: src/types.ts:467
Invalidate the sticky session bound to this request. Idempotent.
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”deleteCookie()
Section titled “deleteCookie()”deleteCookie(name, opts?): void;Defined in: src/types.ts:423
Queue an unset-cookie directive on the HTTP response. Only valid inside a unary RPC method served over HTTP; throws otherwise.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
name | string |
opts? | { domain?: string; path?: string; } |
opts.domain? | string |
opts.path? | string |
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”emit()
Section titled “emit()”Call Signature
Section titled “Call Signature”emit(batch, metadata?): void;Defined in: src/types.ts:493
Emit a pre-built batch as the data batch for this call.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
batch | VgiBatch |
metadata? | Map<string, string> |
Returns
Section titled “Returns”void
Call Signature
Section titled “Call Signature”emit(columns): void;Defined in: src/types.ts:495
Emit a data batch from column arrays keyed by field name. Int64 Number values are coerced to BigInt.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
columns | Record<string, any[]> |
Returns
Section titled “Returns”void
emitRow()
Section titled “emitRow()”emitRow(values): void;Defined in: src/types.ts:518
Single-row convenience. Wraps each value in [value] then calls emit().
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
values | Record<string, any> |
Returns
Section titled “Returns”void
finish()
Section titled “finish()”finish(): void;Defined in: src/types.ts:527
Signal stream completion for producer streams. Throws if called on exchange streams.
Returns
Section titled “Returns”void
openSession()
Section titled “openSession()”openSession(state, ttl?): void;Defined in: src/types.ts:448
Register a sticky session holding state for subsequent requests on
this transport. HTTP-only — throws on other transports, on calls
without the VGI-Session-Accept: true opt-in header, or when a
session is already bound to this request.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
state | unknown |
ttl? | number |
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”setCookie()
Section titled “setCookie()”setCookie( name, value, attrs?): void;Defined in: src/types.ts:413
Queue a Set-Cookie header on the HTTP response. Only valid inside a unary RPC method served over HTTP; throws otherwise.
Parameters
Section titled “Parameters”| Parameter | Type |
|---|---|
name | string |
value | string |
attrs? | CookieAttrs |
Returns
Section titled “Returns”void