Skip to main content
function transferableAbortSignal
unstable
transferableAbortSignal(signal: AbortSignal): AbortSignal
Deprecated

Deno compatibility

This symbol is currently not supported.

Marks the given AbortSignal as transferable so that it can be used withstructuredClone() and postMessage().

const signal = transferableAbortSignal(AbortSignal.timeout(100));
const channel = new MessageChannel();
channel.port2.postMessage(signal, [signal]);

Parameters

signal: AbortSignal

The AbortSignal

Return Type

AbortSignal

The same AbortSignal

Back to top