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
I'm try to create an object in the main thread basically in this way: createObjectBuffer( <length>, {type: 'A', proto: data, protoLength: data.byteLength}, {}, window.crossOriginIsolated ? 'shared' : 'vanilla' );
in which data is an ArrayBuffer type.
Unfortunately in the worker I'm receiving a strange buffer.proto which a type: Proxy(Object) {objectBufferWrapper: 'objectBufferWrapper'}
How can I retrieve the "original" data info ?
Thanks a lot for your support and very good work around this library! :-)
The text was updated successfully, but these errors were encountered:
I'm try to create an object in the main thread basically in this way:
createObjectBuffer( <length>, {type: 'A', proto: data, protoLength: data.byteLength}, {}, window.crossOriginIsolated ? 'shared' : 'vanilla' );
in which data is an ArrayBuffer type.
Unfortunately in the worker I'm receiving a strange buffer.proto which a type:
Proxy(Object) {objectBufferWrapper: 'objectBufferWrapper'}
How can I retrieve the "original" data info ?
Thanks a lot for your support and very good work around this library! :-)
The text was updated successfully, but these errors were encountered: