You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
import { ${WorkerName}MainThreadWorker } from './main_thread/${workerName}_main_thread'; |
|
// 不需要一起打包的话则不需要引入这行 |
|
// FuiWorkerPlugin中的属性会同步到fui-worker中,同时支持loader行内传入属性 |
|
// 根据实际需求传入inline,返回格式 true -> blob url,false -> servicePath |
|
import workerUrl from 'fui-worker!./worker_thread/${workerName}_worker_thread'; |
|
|
|
export class ${WorkerName}WorkerHelper { |
|
private worker: ${WorkerName}MainThreadWorker; |
|
|
|
/** |
|
* 拿到helper中的worker |
|
*/ |
|
public getWorker() { |
|
if (this.worker) { |
|
return this.worker; |
|
} |
|
|
|
this.worker = BI.Workers.createWorker(${WorkerName}MainThreadWorker, { |
|
workerUrl: this.urlFormatter(workerUrl), |
|
workerName: BI.UUID(), |
|
}); |
|
|
|
return this.worker; |
|
} |
|
|
|
/** |
|
* 格式化worker url,比如补充一些环境信息到参数里 |
|
* 可通过 #hash 将参数传入blob url |
|
* @param url worker url |
|
*/ |
|
private urlFormatter(url: string) { |
|
return url; |
|
} |
|
|
|
/** |
|
* 终止worker |
|
*/ |
|
public terminate() { |
|
this.worker?.terminate(); |
|
} |
|
} |
|
|
|
// 使用示例 |
|
// const workerHelper = new ${WorkerName}WorkerHelper(); |
|
|
|
// workerHelper.getWorker() |
|
// .testCommunication() |
|
// .then(res => console.log(res));
|
|
|