2017-09-05 22:38:32 +02:00
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
|
2018-06-01 15:13:43 +02:00
|
|
|
const { MessageChannel } = require('worker_threads');
|
2017-09-05 22:38:32 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
const { port1, port2 } = new MessageChannel();
|
|
|
|
|
|
|
|
const arrayBuffer = new ArrayBuffer(40);
|
|
|
|
const typedArray = new Uint32Array(arrayBuffer);
|
|
|
|
typedArray[0] = 0x12345678;
|
|
|
|
|
|
|
|
port1.postMessage(typedArray, [ arrayBuffer ]);
|
2023-05-05 19:22:42 +08:00
|
|
|
assert.strictEqual(arrayBuffer.byteLength, 0);
|
|
|
|
// Transferring again should throw a DataCloneError.
|
|
|
|
assert.throws(() => port1.postMessage(typedArray, [ arrayBuffer ]), {
|
|
|
|
code: 25,
|
|
|
|
name: 'DataCloneError',
|
|
|
|
});
|
|
|
|
|
2017-09-05 22:38:32 +02:00
|
|
|
port2.on('message', common.mustCall((received) => {
|
|
|
|
assert.strictEqual(received[0], 0x12345678);
|
|
|
|
port2.close(common.mustCall());
|
|
|
|
}));
|
|
|
|
}
|