chjj / bthreads

worker threads for javascript
Other
48 stars 0 forks source link

postMessage is broken in browsers #4

Open niftylettuce opened 3 years ago

niftylettuce commented 3 years ago

You cannot use postMessage web worker API method, as it results in TypeError, and is also expecting an Array with a length of 3. Screen Shot 2020-08-18 at 1 21 17 AM

A basic test shows this does not work.

niftylettuce commented 3 years ago

This occurs with a basic job:

console.log('hello');
postMessage(['done']);

Screen Shot 2020-08-18 at 1 30 31 AM