diff --git a/spring-messaging/src/main/java/org/springframework/messaging/rsocket/RSocketRequester.java b/spring-messaging/src/main/java/org/springframework/messaging/rsocket/RSocketRequester.java index bc454b92b2..4c6f0361ca 100644 --- a/spring-messaging/src/main/java/org/springframework/messaging/rsocket/RSocketRequester.java +++ b/spring-messaging/src/main/java/org/springframework/messaging/rsocket/RSocketRequester.java @@ -56,7 +56,7 @@ public interface RSocketRequester { *
For requestChannel interactions, i.e. Flux-to-Flux the metadata is * attached to the first request payload. * @param route the routing destination - * @return a spec for further defining and executing the reuqest + * @return a spec for further defining and executing the request */ RequestSpec route(String route); @@ -64,8 +64,8 @@ public interface RSocketRequester { /** * Obtain a builder for an {@link RSocketRequester} by connecting to an * RSocket server. The builder allows for customization of - * {@link RSocketFactory.ClientRSocketFactory ClientRSocketFactory} settings, - * {@link RSocketStrategies}, and for selecting the transport to use. + * {@link io.rsocket.RSocketFactory.ClientRSocketFactory ClientRSocketFactory} + * settings, {@link RSocketStrategies}, and for selecting the transport to use. */ static RSocketRequester.Builder builder() { return new DefaultRSocketRequesterBuilder(); @@ -164,7 +164,7 @@ public interface RSocketRequester { * Provide request payload data. The given Object may be a synchronous * value, or a {@link Publisher} of values, or another async type that's * registered in the configured {@link ReactiveAdapterRegistry}. - *
For multivalued Publishers, prefer using + *
For multi-valued Publishers, prefer using * {@link #data(Publisher, Class)} or * {@link #data(Publisher, ParameterizedTypeReference)} since that makes * it possible to find a compatible {@code Encoder} up front vs looking @@ -179,7 +179,7 @@ public interface RSocketRequester { *
Publisher semantics determined through the configured * {@link ReactiveAdapterRegistry} influence which of the 4 RSocket * interactions to use. Publishers with unknown semantics are treated - * as multivalued. Consider registering a reactive type adapter, or + * as multi-valued. Consider registering a reactive type adapter, or * passing {@code Mono.from(publisher)}. *
If the publisher completes empty, possibly {@code Publisher Note: Use of this method will raise an error if
- * the request payload is a multivalued {@link Publisher} as
+ * the request payload is a multi-valued {@link Publisher} as
* determined through the configured {@link ReactiveAdapterRegistry}.
* @param dataType the expected data type for the response
* @param If {@code @TestConstructor} is not present or meta-present
* on a test class, the default test constructor autowire mode will be used.
- * See {@link #AUTOWIRE_TEST_CONSTRUCTOR_PROPERTY_NAME} for details on how to change
+ * See {@link #TEST_CONSTRUCTOR_AUTOWIRE_PROPERTY_NAME} for details on how to change
* the default mode. Note, however, that a local declaration of
* {@link org.springframework.beans.factory.annotation.Autowired @Autowired} on
* a constructor takes precedence over both {@code @TestConstructor} and the default
@@ -81,12 +81,12 @@ public @interface TestConstructor {
* Flag for setting the test constructor autowire mode for the
* current test class.
* Setting this flag overrides the global default. See
- * {@link #AUTOWIRE_TEST_CONSTRUCTOR_PROPERTY_NAME} for details on how to
+ * {@link #TEST_CONSTRUCTOR_AUTOWIRE_PROPERTY_NAME} for details on how to
* change the global default.
* @return {@code true} if all test constructor arguments should be autowired
* from the test's {@link org.springframework.context.ApplicationContext
* ApplicationContext}
- * @see #AUTOWIRE_TEST_CONSTRUCTOR_PROPERTY_NAME
+ * @see #TEST_CONSTRUCTOR_AUTOWIRE_PROPERTY_NAME
* @see org.springframework.beans.factory.annotation.Autowired @Autowired
*/
boolean autowire();