Fix Javadoc links
This commit is contained in:
parent
9b61316c2e
commit
0cff7eb32c
|
|
@ -56,7 +56,7 @@ public interface RSocketRequester {
|
||||||
* <p>For requestChannel interactions, i.e. Flux-to-Flux the metadata is
|
* <p>For requestChannel interactions, i.e. Flux-to-Flux the metadata is
|
||||||
* attached to the first request payload.
|
* attached to the first request payload.
|
||||||
* @param route the routing destination
|
* @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);
|
RequestSpec route(String route);
|
||||||
|
|
||||||
|
|
@ -64,8 +64,8 @@ public interface RSocketRequester {
|
||||||
/**
|
/**
|
||||||
* Obtain a builder for an {@link RSocketRequester} by connecting to an
|
* Obtain a builder for an {@link RSocketRequester} by connecting to an
|
||||||
* RSocket server. The builder allows for customization of
|
* RSocket server. The builder allows for customization of
|
||||||
* {@link RSocketFactory.ClientRSocketFactory ClientRSocketFactory} settings,
|
* {@link io.rsocket.RSocketFactory.ClientRSocketFactory ClientRSocketFactory}
|
||||||
* {@link RSocketStrategies}, and for selecting the transport to use.
|
* settings, {@link RSocketStrategies}, and for selecting the transport to use.
|
||||||
*/
|
*/
|
||||||
static RSocketRequester.Builder builder() {
|
static RSocketRequester.Builder builder() {
|
||||||
return new DefaultRSocketRequesterBuilder();
|
return new DefaultRSocketRequesterBuilder();
|
||||||
|
|
@ -164,7 +164,7 @@ public interface RSocketRequester {
|
||||||
* Provide request payload data. The given Object may be a synchronous
|
* Provide request payload data. The given Object may be a synchronous
|
||||||
* value, or a {@link Publisher} of values, or another async type that's
|
* value, or a {@link Publisher} of values, or another async type that's
|
||||||
* registered in the configured {@link ReactiveAdapterRegistry}.
|
* registered in the configured {@link ReactiveAdapterRegistry}.
|
||||||
* <p>For multivalued Publishers, prefer using
|
* <p>For multi-valued Publishers, prefer using
|
||||||
* {@link #data(Publisher, Class)} or
|
* {@link #data(Publisher, Class)} or
|
||||||
* {@link #data(Publisher, ParameterizedTypeReference)} since that makes
|
* {@link #data(Publisher, ParameterizedTypeReference)} since that makes
|
||||||
* it possible to find a compatible {@code Encoder} up front vs looking
|
* it possible to find a compatible {@code Encoder} up front vs looking
|
||||||
|
|
@ -179,7 +179,7 @@ public interface RSocketRequester {
|
||||||
* <p>Publisher semantics determined through the configured
|
* <p>Publisher semantics determined through the configured
|
||||||
* {@link ReactiveAdapterRegistry} influence which of the 4 RSocket
|
* {@link ReactiveAdapterRegistry} influence which of the 4 RSocket
|
||||||
* interactions to use. Publishers with unknown semantics are treated
|
* 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)}.
|
* passing {@code Mono.from(publisher)}.
|
||||||
* <p>If the publisher completes empty, possibly {@code Publisher<Void>},
|
* <p>If the publisher completes empty, possibly {@code Publisher<Void>},
|
||||||
* the request will have an empty data Payload.
|
* the request will have an empty data Payload.
|
||||||
|
|
@ -214,7 +214,7 @@ public interface RSocketRequester {
|
||||||
* expected data type is {@code Void.class}, the returned {@code Mono}
|
* expected data type is {@code Void.class}, the returned {@code Mono}
|
||||||
* will complete after all data is consumed.
|
* will complete after all data is consumed.
|
||||||
* <p><strong>Note:</strong> Use of this method will raise an error if
|
* <p><strong>Note:</strong> 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}.
|
* determined through the configured {@link ReactiveAdapterRegistry}.
|
||||||
* @param dataType the expected data type for the response
|
* @param dataType the expected data type for the response
|
||||||
* @param <T> parameter for the expected data type
|
* @param <T> parameter for the expected data type
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ import java.lang.annotation.Target;
|
||||||
*
|
*
|
||||||
* <p>If {@code @TestConstructor} is not <em>present</em> or <em>meta-present</em>
|
* <p>If {@code @TestConstructor} is not <em>present</em> or <em>meta-present</em>
|
||||||
* on a test class, the default <em>test constructor autowire</em> mode will be used.
|
* on a test class, the default <em>test constructor autowire</em> 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
|
* the default mode. Note, however, that a local declaration of
|
||||||
* {@link org.springframework.beans.factory.annotation.Autowired @Autowired} on
|
* {@link org.springframework.beans.factory.annotation.Autowired @Autowired} on
|
||||||
* a constructor takes precedence over both {@code @TestConstructor} and the default
|
* a constructor takes precedence over both {@code @TestConstructor} and the default
|
||||||
|
|
@ -81,12 +81,12 @@ public @interface TestConstructor {
|
||||||
* Flag for setting the <em>test constructor autowire</em> mode for the
|
* Flag for setting the <em>test constructor autowire</em> mode for the
|
||||||
* current test class.
|
* current test class.
|
||||||
* <p>Setting this flag overrides the global default. See
|
* <p>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.
|
* change the global default.
|
||||||
* @return {@code true} if all test constructor arguments should be autowired
|
* @return {@code true} if all test constructor arguments should be autowired
|
||||||
* from the test's {@link org.springframework.context.ApplicationContext
|
* from the test's {@link org.springframework.context.ApplicationContext
|
||||||
* ApplicationContext}
|
* ApplicationContext}
|
||||||
* @see #AUTOWIRE_TEST_CONSTRUCTOR_PROPERTY_NAME
|
* @see #TEST_CONSTRUCTOR_AUTOWIRE_PROPERTY_NAME
|
||||||
* @see org.springframework.beans.factory.annotation.Autowired @Autowired
|
* @see org.springframework.beans.factory.annotation.Autowired @Autowired
|
||||||
*/
|
*/
|
||||||
boolean autowire();
|
boolean autowire();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue