文件名称:threadbox:NodeJS中的递归工作线程
文件大小:1.27MB
文件格式:ZIP
更新时间:2024-05-04 01:01:43
nodejs channels parallelism worker-threads atomics
线程盒 NodeJS中的递归工作线程 例子 下面复制了上面的工作图。 有关JavaScript版本,请参见。 // app.ts import { spawn , Main , Thread , channel , Sender , Receiver } from '@sinclair/threadbox' @ Thread ( ) class WorkerC { run ( ) { return Math . random ( ) } } @ Thread ( ) class WorkerB { async run ( sender : Sender ) { const c_0 = spawn ( WorkerC ) const c_1 = spawn ( WorkerC ) const c_2 =