Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/comlink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,9 @@ export function expose(
ep: Endpoint = globalThis as any,
allowedOrigins: (string | RegExp)[] = ["*"]
) {
const newCount = (proxyCounter.get(ep) || 0) + 1;
proxyCounter.set(ep, newCount);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A few notes:

  • I think proxyCounter should be renamed. Maybe endpointRefCounts ?
  • We might want to return from Comlink.expose a function that decrement that count (so that this can be cleaned)


ep.addEventListener("message", function callback(ev: MessageEvent) {
if (!ev || !ev.data) {
return;
Expand Down