-
Notifications
You must be signed in to change notification settings - Fork 340
Question: Passing buffer as an argument works #208
Comments
Hi @nveenjain , currently However, if you just want to transport the data in a var napa = require('napajs');
var zone1 = napa.zone.create('zone1', { workers: 4 });
var buf = (Buffer.from("napajs is awesome","utf8"));
var byteArray = new Uint8Array(buf.buffer, buf.offset, buf.length);
zone1.execute((x) => {
console.log(x);
}, [byteArray]);
// output: 110,97,112,97,106,115,32,105,115,32,97,119,101,115,111,109,101 |
Thanks a lot. |
@fs-eire maybe it's better to document this workaround, until Buffer is supported? |
I see in the project tab of project, that you guys are improving node API, what could be the possible timeline after which we can transport buffer too? Thanks for all your work. Also I would love to document this workaround, if you say. |
Hey everyone, First of all thanks for this awesome runtime, I've been tinkering with napajs, and got to know that Buffer is not transportable, but when i tried to run following code, it runs as expected, Could you please clarify, why? Is this hack allowed, so we could in theory pass any object and napa would not throw any error?
Also, if I want to implement a Transportable class without using decorators, it isn't working.
I'm implementing using:-
It throws error that
Class "z" doesn't implement cid(), did you forget put @cid decorator before class declaration?
Please help, Thanks!The text was updated successfully, but these errors were encountered: