SharedWorkerGlobalScope: connect event - Web APIs 编辑
The connect
event is fired in shared workers at their SharedWorkerGlobalScope
when a new client connects.
Bubbles | No |
---|---|
Cancelable | No |
Interface | MessageEvent |
Event handler property | SharedWorkerGlobalScope.onconnect |
Examples
This example shows a shared worker file — when a connection to the worker occurs from a main thread via a MessagePort
, the onconnect
event handler fires. The event object is a MessageEvent
.
The connecting port can be referenced through the event object's ports
parameter; this reference can have an onmessage
handler attached to it to handle messages coming in through the port, and its postMessage()
method can be used to send messages back to the main thread using the worker.
self.onconnect = function(e) {
var port = e.ports[0];
port.onmessage = function(e) {
var workerResult = 'Result: ' + (e.data[0] * e.data[1]);
port.postMessage(workerResult);
}
port.start();
}
For a complete running example, see our Basic shared worker example (run shared worker.)
addEventListener equivalent
You could also set up an event handler using the addEventListener()
method:
self.addEventListener('connect', function(e) {
var port = e.ports[0];
port.onmessage = function(e) {
var workerResult = 'Result: ' + (e.data[0] * e.data[1]);
port.postMessage(workerResult);
}
});
Specifications
Specification | Status |
---|---|
HTML Living Standard The definition of 'connect event' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论