Uses of Interface
dev.tachyonmcp.core.server.OutboundSseStream
Packages that use OutboundSseStream
Package
Description
Server classes
Internal server engine — request dispatch, session lifecycle, handler wiring.
Session management — dispatch contexts, session lifecycle events, and session storage.
Netty Server-Sent Events (SSE) transport for MCP streamable HTTP.
-
Uses of OutboundSseStream in dev.tachyonmcp.core.server
Methods in dev.tachyonmcp.core.server that return OutboundSseStreamModifier and TypeMethodDescriptionstatic @Nullable OutboundSseStreamOutboundSseStreamMessageRouter.currentOutboundSseStream()@Nullable OutboundSseStream@Nullable OutboundSseStreamResolves theOutboundSseStreambound in the current dispatch context for the given session, if any.Methods in dev.tachyonmcp.core.server with parameters of type OutboundSseStreamModifier and TypeMethodDescriptionMcpDispatcher.dispatchRequestAsync(RequestId id, String method, Object params, @Nullable String sessionId, @Nullable OutboundSseStream outboundSseStream, @Nullable ChannelContext channelContext) static <T> TOutboundSseStreamMessageRouter.withDispatchContext(@Nullable String sessionId, @Nullable OutboundSseStream outboundSseStream, Callable<T> action) -
Uses of OutboundSseStream in dev.tachyonmcp.core.server.internal
Methods in dev.tachyonmcp.core.server.internal with parameters of type OutboundSseStreamModifier and TypeMethodDescriptionvoidServerEngine.sendNotification(Session session, String method, @Nullable Object params, @Nullable OutboundSseStream stream) Sends a notification to the given session, optionally via a bound outbound SSE stream.ServerEngine.sendRequest(Session session, String method, Object params, @Nullable OutboundSseStream stream) Sends a request to the client, optionally via a bound outbound SSE stream, and returns a future. -
Uses of OutboundSseStream in dev.tachyonmcp.core.server.session
Methods in dev.tachyonmcp.core.server.session that return OutboundSseStreamModifier and TypeMethodDescription@Nullable OutboundSseStreamDefaultDispatchContext.outboundStream()@Nullable OutboundSseStreamDispatchContext.outboundStream()Returns the outbound SSE stream, ornullif not yet upgraded.@Nullable OutboundSseStreamNoopInteractionContext.outboundStream()Methods in dev.tachyonmcp.core.server.session with parameters of type OutboundSseStreamModifier and TypeMethodDescriptionvoidDefaultDispatchContext.setOutboundStream(@Nullable OutboundSseStream stream) voidDispatchContext.setOutboundStream(@Nullable OutboundSseStream stream) Sets the outbound SSE stream for this dispatch.voidNoopInteractionContext.setOutboundStream(@Nullable OutboundSseStream stream) -
Uses of OutboundSseStream in dev.tachyonmcp.core.transport.netty.sse
Classes in dev.tachyonmcp.core.transport.netty.sse that implement OutboundSseStream