Zero-copy transfer buffers when passing streams to workers
This commit is contained in:
parent
625c6ea4b3
commit
fe69cb882d
|
@ -79,8 +79,12 @@ export default {
|
|||
const reader = stream.getReader(readable);
|
||||
const { port1, port2 } = new MessageChannel();
|
||||
port1.onmessage = async function({ data: { action } }) {
|
||||
if (action === 'read') port1.postMessage(await reader.read());
|
||||
else if (action === 'cancel') port1.postMessage(await transformed.cancel());
|
||||
if (action === 'read') {
|
||||
const result = await reader.read();
|
||||
port1.postMessage(result, util.getTransferables(result, true));
|
||||
} else if (action === 'cancel') {
|
||||
port1.postMessage(await transformed.cancel());
|
||||
}
|
||||
};
|
||||
obj[key] = port2;
|
||||
collection.push(port2);
|
||||
|
|
|
@ -1741,7 +1741,7 @@ describe('[Sauce Labs Group 2] OpenPGP.js public api tests', function() {
|
|||
if (i++ < 4) {
|
||||
let randomBytes = await openpgp.crypto.random.getRandomBytes(10);
|
||||
controller.enqueue(randomBytes);
|
||||
plaintext.push(randomBytes);
|
||||
plaintext.push(randomBytes.slice());
|
||||
} else {
|
||||
controller.close();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user