AbstractWorker - Web APIs 编辑

The AbstractWorker interface of the Web Workers API is an abstract interface that defines properties and methods that are common to all types of worker, including not only the basic Worker, but also ServiceWorker and SharedWorker. As an abstract class, you don't directly interact with AbstractWorker.

Properties

The AbstractWorker interface doesn't inherit any properties.

Event handlers

AbstractWorker.onerror
An EventListener which is invoked whenever an ErrorEvent of type error bubbles through the worker.

Methods

The AbstractWorker interface doesn't implement or inherit any methods.

Example

As an abstract interface, you won't directly use AbstractWorker in your code. Instead, you'll interact with either Worker or SharedWorker, both of which inherit the properties of AbstractWorker.

This code snippet demonstrates the creation of a new Worker using the Worker() constructor; it also shows how to then send a message to the worker.

var myWorker = new Worker('worker.js');

first.onchange = function() {
  myWorker.postMessage([first.value, second.value]);
  console.log('Message posted to worker');
}

The worker's code is loaded from the file "worker.js". This code assumes that there's an <input> element represented by first; an event handler for the change event is established so that when the user changes the value of first, a message is posted to the worker to let it know.

You can find more examples on the MDN Web Docs GitHub repository:

Specifications

SpecificationStatusComment
HTML Living Standard
The definition of 'AbstractWorker' in that specification.
Living StandardNo change from Unknown.

Browser compatibility

BCD tables only load in the browser

See also

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:120 次

字数:4967

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文