文件名称:worker-function:创建在Web Worker内部执行的函数并返回Promise
文件大小:8KB
文件格式:ZIP
更新时间:2024-06-06 03:49:35
promises promise inline webworker webworkers
工人职能 创建在Web Worker内部执行的函数并返回Promise。 允许创建内联式Web工作程序,而无需为其创建新文件。 看一下这个例子: const WorkerFunction = require ( 'worker-function' ) ; // Let's create a new worker var workerSum = WorkerFunction ( function ( arg1 , arg2 , done ) { // Worker execution can be async, // don't forget to call `done` setTimeout ( ( ) => done ( arg1 + arg2 ) , 2000 ) ; } ) ; // workerSum is used in a new thread // and
【文件预览】:
worker-function-master
----benchmark.js(825B)
----.DS_Store(6KB)
----gulpfile.js(729B)
----LICENSE(1KB)
----README.md(4KB)
----WorkerFunction.js(2KB)
----.gitignore(884B)
----CHANGELOG.md(415B)
----package-lock.json(886B)
----test.html(3KB)
----package.json(704B)