andywer / andywer/threads.js

Should we support passing functions to workers?

未关闭
#145 25 条评论 8 个 reaction 已指派 0 人 在 GitHub 查看
discussion help wanted
主要语言
TypeScript
星标
3.5k
派生
173
PR 合并指标
30 天内没有已合并 PR

描述

In v0.x we built the library around the idea of passing functions to the worker that would be serialized, passed as a message, deserialized and then executed in the worker.

This approach has some subtle, yet strong limitations, though. That's why v1.0 does not support passing functions anymore, in order to prevent people from running into those not-always-obvious issues.

Maybe there are use cases where one really needs to be able to pass functions to workers. Then we need to make sure, though, that the user is aware of the passed function's limitations:

- Cannot access any variable declared outside the functions scope
- Cannot `import` or `require()` other modules in the function (at least not in the browser when bundling)

In response to #141, #144.

贡献指南

这个仓库没有索引到贡献指南

评估

这个 Issue 还没有评估数据。

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。