Web/API/SharedWorkerGlobalScope/connect event

From Get docs


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 ([[../../../../../../../mdn.github.io/simple-shared-worker/index|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 StandardThe definition of 'connect event' in that specification. Living Standard

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet
connect event Chrome

Full support 4

Edge

Full support ≤79

Firefox Full support 29

Notes'

Full support 29

Notes'

Notes' Before version 65 the data property of the event object was null; it is now initialized to an empty string, as per spec.

IE

No support No

Opera

Full support 10.6

Safari

No support No

WebView Android

Full support Yes

Chrome Android

Full support 18

Firefox Android Full support 29

Notes'

Full support 29

Notes'

Notes' Before version 65 the data property of the event object was null; it is now initialized to an empty string, as per spec.

Opera Android

Full support Yes

Safari iOS

?

Samsung Internet Android

Full support 1.0

Legend

Full support  
Full support
No support  
No support
Compatibility unknown  
Compatibility unknown
See implementation notes.'
See implementation notes.


See also