You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 13, 2024. It is now read-only.
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?
varnapa=require('napajs');varzone1=napa.zone.create('zone1',{workers: 4});varx=(Buffer.from("napajs is awesome","utf8"));zone1.execute((x)=>{console.log(JSON.stringify(String.fromCharCode.apply(null,newUint8Array(x.data))));},[x]);
Also, if I want to implement a Transportable class without using decorators, it isn't working.
I'm implementing using:-