We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46cd07b commit 9dde59aCopy full SHA for 9dde59a
mcp-core/src/main/java/io/modelcontextprotocol/spec/McpClientSession.java
@@ -231,7 +231,7 @@ private MethodNotFoundError getMethodNotFoundError(String method) {
231
* @param notification The incoming JSON-RPC notification
232
* @return A Mono that completes when the notification is processed
233
*/
234
- private Mono<Void> handleIncomingNotification(McpSchema.JSONRPCNotification notification) {
+ protected Mono<Void> handleIncomingNotification(McpSchema.JSONRPCNotification notification) {
235
return Mono.defer(() -> {
236
var handler = notificationHandlers.get(notification.method());
237
if (handler == null) {
0 commit comments