작업자 스레드가 쉬워졌습니다.
3035 단어 threadsnpmnodejjavascript
설치
npm i threadman
통사론
new Thread(fn, args, options).run(callback)
// Or
new Thread(fn, args, options).run().then(callback)
기본 사용법
import { Thread } from 'threadman'
let number = 10
const fn = (number) => number + 20
const callback = (result) => number = result
const args = [number]
new Thread(fn, args).run(callback)
// Or a callback function can be passed as third argument like below
new Thread(fn, args).run().then(callback)
결과를 얻은 후 기본 범위에 다시 액세스하고 변수를 재할당할 수 있습니다.
Reference
이 문제에 관하여(작업자 스레드가 쉬워졌습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/varvolta/worker-threads-made-easy-57ep
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
npm i threadman
new Thread(fn, args, options).run(callback)
// Or
new Thread(fn, args, options).run().then(callback)
기본 사용법
import { Thread } from 'threadman'
let number = 10
const fn = (number) => number + 20
const callback = (result) => number = result
const args = [number]
new Thread(fn, args).run(callback)
// Or a callback function can be passed as third argument like below
new Thread(fn, args).run().then(callback)
결과를 얻은 후 기본 범위에 다시 액세스하고 변수를 재할당할 수 있습니다.
Reference
이 문제에 관하여(작업자 스레드가 쉬워졌습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/varvolta/worker-threads-made-easy-57ep
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
import { Thread } from 'threadman'
let number = 10
const fn = (number) => number + 20
const callback = (result) => number = result
const args = [number]
new Thread(fn, args).run(callback)
// Or a callback function can be passed as third argument like below
new Thread(fn, args).run().then(callback)
Reference
이 문제에 관하여(작업자 스레드가 쉬워졌습니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/varvolta/worker-threads-made-easy-57ep텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)