모듈 기본 모듈

모듈 작업자_스레드

작업자 기본 모듈

참고 방법:

1
var worker_threads = require('worker_threads');

물체

Worker

독립 스레드 작업 개체, 참조Worker

1
Worker worker_threads.Worker;

정적 속성

isMainThread

부울, 현재 쿼리Worker메인 스레드인가요?

1
static readonly Boolean worker_threads.isMainThread;

parentPort

Worker, 현재 쿼리Worker상위 스레드

1
static readonly Worker worker_threads.parentPort;

workerData

값, 다음을 통해 상위 스레드를 쿼리합니다.Worker생성자가 스레드에 전달한 데이터의 복제본

1
static readonly Value worker_threads.workerData;