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
Copy file name to clipboardExpand all lines: spring-messaging/src/main/java/org/springframework/messaging/rsocket/service/RSocketServiceProxyFactory.java
+8-6
Original file line number
Diff line number
Diff line change
@@ -188,14 +188,17 @@ public Builder reactiveAdapterRegistry(ReactiveAdapterRegistry registry) {
188
188
}
189
189
190
190
/**
191
-
* Configure how long to wait for a response for an HTTP service method
191
+
* Configure how long to block for the response of an RSocket service method
192
192
* with a synchronous (blocking) method signature.
193
-
* <p>By default this is {@code null},
194
-
* in which case means blocking on publishers is done without a timeout.
193
+
* <p>By default this is not set, in which case the behavior depends on
194
+
* connection and response timeout settings of the underlying RSocket
195
+
* {@code ClientTransport} as well as RSocket keep-alive settings.
196
+
* We recommend configuring timeout values at the RSocket level which
0 commit comments