feat(core): new worker workspace engine (#9257)

This commit is contained in:
EYHN
2025-01-17 00:22:18 +08:00
committed by GitHub
parent 7dc470e7ea
commit a2ffdb4047
219 changed files with 4267 additions and 7194 deletions

View File

@@ -1,6 +1,7 @@
import { assertExists } from '@blocksuite/global/utils';
import { diffUpdate, encodeStateVectorFromUpdate, mergeUpdates } from 'yjs';
import { MANUALLY_STOP } from '../../utils/throw-if-aborted.js';
import type { DocSource } from '../source.js';
type ChannelMessage =
@@ -85,7 +86,7 @@ export class BroadcastChannelDocSource implements DocSource {
{ signal: abortController.signal }
);
return () => {
abortController.abort();
abortController.abort(MANUALLY_STOP);
};
}
}