You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Upgrade to RSocket API `1.0.0-RC3-SNAPSHOT`
* Use the same `rSocketMessageHandler.responder()` callback
for client and server rsocket factories configuration
* Clean up `ClientRSocketConnector` and `ServerRSocketConnector`
JavaDocs not mentioning overriding any more
* Use `WellKnownMimeType.MESSAGE_RSOCKET_COMPOSITE_METADATA` constant
instead of built-in literal
* Fix `RSocketOutboundGatewayIntegrationTests` according the SF changes
Copy file name to clipboardExpand all lines: spring-integration-rsocket/src/main/java/org/springframework/integration/rsocket/AbstractRSocketConnector.java
+4-1
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,8 @@
32
32
importorg.springframework.util.MimeType;
33
33
importorg.springframework.util.MimeTypeUtils;
34
34
35
+
importio.rsocket.metadata.WellKnownMimeType;
36
+
35
37
/**
36
38
* A base connector container for common RSocket client and server functionality.
37
39
* <p>
@@ -53,7 +55,8 @@ public abstract class AbstractRSocketConnector
Copy file name to clipboardExpand all lines: spring-integration-rsocket/src/main/java/org/springframework/integration/rsocket/ClientRSocketConnector.java
+2-7
Original file line number
Diff line number
Diff line change
@@ -34,12 +34,7 @@
34
34
importreactor.core.publisher.Mono;
35
35
36
36
/**
37
-
* A client {@link AbstractRSocketConnector} extension to the RSocket server.
38
-
* <p>
39
-
* Note: the {@link RSocketFactory.ClientRSocketFactory#acceptor(java.util.function.Function)}
40
-
* in the provided {@link #factoryConfigurer} is overridden with an internal
Copy file name to clipboardExpand all lines: spring-integration-rsocket/src/main/java/org/springframework/integration/rsocket/ServerRSocketConnector.java
+1-6
Original file line number
Diff line number
Diff line change
@@ -49,11 +49,6 @@
49
49
50
50
/**
51
51
* A server {@link AbstractRSocketConnector} extension to accept and manage client RSocket connections.
52
-
* <p>
53
-
* Note: the {@link RSocketFactory.ServerRSocketFactory#acceptor(io.rsocket.SocketAcceptor)}
54
-
* in the provided {@link #factoryConfigurer} is overridden with an internal
Copy file name to clipboardExpand all lines: spring-integration-rsocket/src/test/java/org/springframework/integration/rsocket/outbound/RSocketOutboundGatewayIntegrationTests.java
0 commit comments