MCPcopy Create free account
hub / github.com/freecodexyz/free-code / constructor

Method constructor

src/bridge/bridgeMessaging.ts:435–438  ·  view source on GitHub ↗
(capacity: number)

Source from the content-addressed store, hash-verified

433 private writeIdx = 0
434
435 constructor(capacity: number) {
436 this.capacity = capacity
437 this.ring = new Array<string | undefined>(capacity)
438 }
439
440 add(uuid: string): void {
441 if (this.set.has(uuid)) return

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected