Skip to content
1 min read · 121 words

Interface: MethodOptions

Defined in: src/batteries/isolation/types.ts:42

Runtime options accepted by method.

Extended by

Properties

PropertyTypeDescriptionDefined in
codec?CodecModeOverride the codec tier for this method's arguments and return value. Default: 'auto'.src/batteries/isolation/types.ts:52
signal?booleanWhen true, the facade's generated method accepts a trailing AbortSignal and the guest implementation receives a trailing IsolationCallContext carrying that signal. When omitted/false, a trailing signal argument is still accepted on the facade (for call-site uniformity) but is not forwarded anywhere meaningful — the implementation is never given a context parameter.src/batteries/isolation/types.ts:50