var myworker = new worker("worker.js");
first.onchange = function(){
myworker.postmessage([first.value,second.value]);
console.log('message posted to worker');
}
Note que usted no estará usando la interfaz AbstractWorker diractamente en su código — cuando es invocada, Worker y SharedWorker heredan sus propiedades. El siguiente fragmento de código muestra la creación de un objeto Worker usando el constructor Worker() , junto con la forma de uso del objeto creado.
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.