Offload functions to worker threads with shared memory primitives for Node.js.
8
fork

Configure Feed

Select the types of activity you want to include in your feed.

at e46aca05dbf9a2204886d23f7ae3b34883f4e5c6 5 lines 159 B view raw
1/** A shared-memory value that can be read with `load()` and written with `store()`. */ 2export interface Loadable<T> { 3 load(): T; 4 store(value: T): void; 5}