Files
orca/src/shared/remote-runtime-abort-orphaned-socket.ts
T

11 lines
193 B
TypeScript

export function scheduleOrphanedRemoteRuntimeSocketClose(
isOrphaned: () => boolean,
close: () => void
): void {
queueMicrotask(() => {
if (isOrphaned()) {
close()
}
})
}