MCPcopy Create free account
hub / github.com/deepclause/agentvm / constructor

Method constructor

src/ringbuffer.js:292–296  ·  view source on GitHub ↗
(sharedBuffer)

Source from the content-addressed store, hash-verified

290 */
291class RingBufferReader {
292 constructor(sharedBuffer) {
293 this.buffer = sharedBuffer;
294 this.int32 = new Int32Array(sharedBuffer);
295 this.uint8 = new Uint8Array(sharedBuffer);
296 }
297
298 /**
299 * Check if there's data available in the network ring buffer

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected