| 13 | * see more details: https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#resumability-and-redelivery. |
| 14 | */ |
| 15 | export class InMemoryEventStore implements EventStore { |
| 16 | private events: Map<string, { streamId: string; message: JSONRPCMessage }> = |
| 17 | new Map(); |
| 18 |
nothing calls this directly
no outgoing calls
no test coverage detected