Package | Description |
---|---|
org.springframework.core |
Provides basic classes for exception handling and version detection,
and other core helpers that are not specific to any part of the framework.
|
org.springframework.messaging.handler.annotation.reactive |
Support classes for working with annotated message-handling methods with
non-blocking, reactive contracts.
|
org.springframework.messaging.handler.invocation |
Common infrastructure for invoking message handler methods.
|
org.springframework.messaging.handler.invocation.reactive |
Common infrastructure for invoking message handler methods with non-blocking,
and reactive contracts.
|
org.springframework.messaging.rsocket |
Support for the RSocket protocol.
|
org.springframework.messaging.rsocket.annotation.support |
Support classes for working with annotated RSocket stream handling methods.
|
org.springframework.web.reactive.config |
Spring WebFlux configuration infrastructure.
|
org.springframework.web.reactive.result |
Support for various programming model styles including the invocation of
different types of handlers, e.g.
|
org.springframework.web.reactive.result.method |
Infrastructure for handler method processing.
|
org.springframework.web.reactive.result.method.annotation |
Infrastructure for annotation-based handler method processing.
|
org.springframework.web.reactive.result.view |
Support for result handling through view resolution.
|
org.springframework.web.servlet.mvc.method.annotation |
MVC infrastructure for annotation-based handler method processing, building on the
org.springframework.web.method.annotation package. |
Modifier and Type | Method and Description |
---|---|
static ReactiveAdapterRegistry |
ReactiveAdapterRegistry.getSharedInstance()
Return a shared default
ReactiveAdapterRegistry instance,
lazily building it once needed. |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
PayloadMethodArgumentResolver.getAdapterRegistry()
Return the configured
ReactiveAdapterRegistry . |
Constructor and Description |
---|
PayloadMethodArgumentResolver(List<? extends Decoder<?>> decoders,
Validator validator,
ReactiveAdapterRegistry registry,
boolean useDefaultResolution) |
Constructor and Description |
---|
ReactiveReturnValueHandler(ReactiveAdapterRegistry adapterRegistry) |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
AbstractEncoderMethodReturnValueHandler.getAdapterRegistry()
The configured adapter registry.
|
ReactiveAdapterRegistry |
AbstractMethodMessageHandler.getReactiveAdapterRegistry()
Return the configured registry for adapting reactive types.
|
Modifier and Type | Method and Description |
---|---|
void |
InvocableHandlerMethod.setReactiveAdapterRegistry(ReactiveAdapterRegistry registry)
Configure a reactive adapter registry.
|
void |
AbstractMethodMessageHandler.setReactiveAdapterRegistry(ReactiveAdapterRegistry registry)
Configure the registry for adapting various reactive types.
|
Constructor and Description |
---|
AbstractEncoderMethodReturnValueHandler(List<Encoder<?>> encoders,
ReactiveAdapterRegistry registry) |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
RSocketStrategies.reactiveAdapterRegistry()
Return the configured
reactiveAdapterRegistry . |
Modifier and Type | Method and Description |
---|---|
RSocketStrategies.Builder |
RSocketStrategies.Builder.reactiveAdapterStrategy(ReactiveAdapterRegistry registry)
Configure the registry for reactive type support.
|
Modifier and Type | Method and Description |
---|---|
void |
RSocketMessageHandler.setReactiveAdapterRegistry(ReactiveAdapterRegistry registry)
Configure the registry for adapting various reactive types.
|
Constructor and Description |
---|
RSocketPayloadReturnValueHandler(List<Encoder<?>> encoders,
ReactiveAdapterRegistry registry) |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
WebFluxConfigurationSupport.webFluxAdapterRegistry()
Return a
ReactiveAdapterRegistry to adapting reactive types. |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
HandlerResultHandlerSupport.getAdapterRegistry()
Return the configured
ReactiveAdapterRegistry . |
Constructor and Description |
---|
HandlerResultHandlerSupport(RequestedContentTypeResolver contentTypeResolver,
ReactiveAdapterRegistry adapterRegistry) |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
HandlerMethodArgumentResolverSupport.getAdapterRegistry()
Return the configured
ReactiveAdapterRegistry . |
Modifier and Type | Method and Description |
---|---|
void |
InvocableHandlerMethod.setReactiveAdapterRegistry(ReactiveAdapterRegistry registry)
Configure a reactive adapter registry.
|
Constructor and Description |
---|
HandlerMethodArgumentResolverSupport(ReactiveAdapterRegistry adapterRegistry) |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
RequestMappingHandlerAdapter.getReactiveAdapterRegistry()
Return the configured registry for adapting reactive types.
|
Modifier and Type | Method and Description |
---|---|
void |
RequestMappingHandlerAdapter.setReactiveAdapterRegistry(ReactiveAdapterRegistry registry)
Configure the registry for adapting various reactive types.
|
Constructor and Description |
---|
AbstractView(ReactiveAdapterRegistry reactiveAdapterRegistry) |
ViewResolutionResultHandler(List<ViewResolver> viewResolvers,
RequestedContentTypeResolver contentTypeResolver,
ReactiveAdapterRegistry registry)
Constructor with an
ReactiveAdapterRegistry instance. |
Modifier and Type | Method and Description |
---|---|
ReactiveAdapterRegistry |
RequestMappingHandlerAdapter.getReactiveAdapterRegistry()
Return the configured reactive type registry of adapters.
|
Modifier and Type | Method and Description |
---|---|
void |
RequestMappingHandlerAdapter.setReactiveAdapterRegistry(ReactiveAdapterRegistry reactiveAdapterRegistry)
Configure the registry for reactive library types to be supported as
return values from controller methods.
|
Constructor and Description |
---|
ResponseBodyEmitterReturnValueHandler(List<HttpMessageConverter<?>> messageConverters,
ReactiveAdapterRegistry registry,
TaskExecutor executor,
ContentNegotiationManager manager)
Complete constructor with pluggable "reactive" type support.
|