Uses of Interface
dev.tachyonmcp.core.server.session.SessionEventStore
Packages that use SessionEventStore
Package
Description
Server, capability, network, session, and task configuration types.
Session management — dispatch contexts, session lifecycle events, and session storage.
-
Uses of SessionEventStore in dev.tachyonmcp.core.server.config
Methods in dev.tachyonmcp.core.server.config that return SessionEventStoreModifier and TypeMethodDescription@Nullable SessionEventStoreSessionConfig.sessionEventStore()Returns the value of thesessionEventStorerecord component.Methods in dev.tachyonmcp.core.server.config with parameters of type SessionEventStoreModifier and TypeMethodDescriptionSessionConfig.Builder.sessionEventStore(@Nullable SessionEventStore store) Sets a custom session event store.Constructors in dev.tachyonmcp.core.server.config with parameters of type SessionEventStoreModifierConstructorDescriptionSessionConfig(boolean enabled, @Nullable Duration sessionTtl, @Nullable SessionEventStore sessionEventStore, @Nullable SessionStore sessionStore, @Nullable SessionIdGenerator<? super io.netty.handler.codec.http.HttpRequest> sessionIdGenerator, @Nullable Duration janitorInterval) Creates an instance of aSessionConfigrecord class. -
Uses of SessionEventStore in dev.tachyonmcp.core.server.session
Classes in dev.tachyonmcp.core.server.session that implement SessionEventStoreModifier and TypeClassDescriptionfinal classIn-memory event log bounded toInMemorySessionEventStore.maxEvents: appends past the cap drop the oldest entry (they remain unrecoverable — an SSE client reconnecting with aLast-Event-IDolder than the window simply misses those events, matching typical broker retention semantics).