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
Is it not possible to write the IPC stream directly to a Uint8Array rather than a vector? Not super familiar with rust/wasm at all but was going to look into this tomorrow. Just wanted to check if there was some reason you hadn't first.
The current implementation was done because it seemed to work reliably. I think in general it's not possible to write the IPC stream directly into a Uint8Array because the Uint8Array is memory managed by JS (outside WASM) while the Vec<u8> is memory managed by Rust (inside WASM).
Is it not possible to write the IPC stream directly to a
Uint8Array
rather than a vector? Not super familiar with rust/wasm at all but was going to look into this tomorrow. Just wanted to check if there was some reason you hadn't first.Originally posted by @akash329d in #15 (comment)
The text was updated successfully, but these errors were encountered: