File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
mcp/src/main/java/io/modelcontextprotocol/client/transport Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change 3434/**
3535 * Server-Sent Events (SSE) implementation of the
3636 * {@link io.modelcontextprotocol.spec.McpTransport} that follows the MCP HTTP with SSE
37- * transport specification, using Java's HttpClient and FlowSseClient .
37+ * transport specification, using Java's HttpClient.
3838 *
3939 * <p>
4040 * This transport implementation establishes a bidirectional communication channel between
@@ -92,13 +92,6 @@ public class HttpClientSseClientTransport implements McpClientTransport {
9292 /** Flag indicating if the transport is in closing state */
9393 private volatile boolean isClosing = false ;
9494
95- // /** Latch for coordinating endpoint discovery */
96- // private final CountDownLatch closeLatch = new CountDownLatch(1);
97-
98- // /** Holds the discovered message endpoint URL */
99- // private final AtomicReference<String> messageEndpoint = new
100- // AtomicReference<>();
101-
10295 /** Holds the SSE subscription disposable */
10396 private final AtomicReference <Disposable > sseSubscription = new AtomicReference <>();
10497
You can’t perform that action at this time.
0 commit comments