MCPcopy Create free account
hub / github.com/EvoMap/evolver / _evictFromIndex

Method _evictFromIndex

src/proxy/mailbox/store.js:322–328  ·  view source on GitHub ↗
(id)

Source from the content-addressed store, hash-verified

320 }
321
322 _evictFromIndex(id) {
323 const msg = this._messages.get(id);
324 if (!msg) return;
325 const arr = msg.direction === 'outbound' ? this._outbound : this._inbound;
326 const idx = arr.indexOf(id);
327 if (idx !== -1) arr.splice(idx, 1);
328 }
329
330 // --- Public API: send / writeInbound ---
331

Callers 2

ackMethod · 0.95
updateStatusMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected