//import const rusha = require('rusha'); //set up worker const worker = rusha.createWorker(); // send data to be hashed worker.postMessage({id: myjobid, data: mydata}); How do I retrieve the hash and terminate the worker?
//import
const rusha = require('rusha');
//set up worker
const worker = rusha.createWorker();
// send data to be hashed
worker.postMessage({id: myjobid, data: mydata});
How do I retrieve the hash and terminate the worker?