Uses of Interface
org.springframework.messaging.rsocket.RSocketStrategies.Builder
Packages that use RSocketStrategies.Builder
-
Uses of RSocketStrategies.Builder in org.springframework.messaging.rsocket
Methods in org.springframework.messaging.rsocket that return RSocketStrategies.BuilderModifier and TypeMethodDescriptionstatic RSocketStrategies.Builder
RSocketStrategies.builder()
Return a builder to prepare a newRSocketStrategies
instance.RSocketStrategies.Builder.dataBufferFactory
(@Nullable org.springframework.core.io.buffer.DataBufferFactory bufferFactory) Configure the DataBufferFactory to use for allocating buffers when preparing requests or creating responses.RSocketStrategies.Builder.decoder
(org.springframework.core.codec.Decoder<?>... decoder) Append to the list of decoders to use for de-serializing Objects from the data or metadata of aPayload
.RSocketStrategies.Builder.decoders
(Consumer<List<org.springframework.core.codec.Decoder<?>>> consumer) Apply the consumer to the list of configured decoders, immediately.RSocketStrategies.Builder.encoder
(org.springframework.core.codec.Encoder<?>... encoder) Append to the list of encoders to use for serializing Objects to the data or metadata of aPayload
.RSocketStrategies.Builder.encoders
(Consumer<List<org.springframework.core.codec.Encoder<?>>> consumer) Apply the consumer to the list of configured encoders, immediately.RSocketStrategies.Builder.metadataExtractor
(@Nullable MetadataExtractor metadataExtractor) Configure aMetadataExtractor
to extract the route along with other metadata.RSocketStrategies.Builder.metadataExtractorRegistry
(Consumer<MetadataExtractorRegistry> consumer) Apply the consumer to theMetadataExtractorRegistry
in order to register extra metadata entry extractors.default RSocketStrategies.Builder
RSocketStrategies.mutate()
Return a builder to create a newRSocketStrategies
instance replicated from the current instance.RSocketStrategies.Builder.reactiveAdapterStrategy
(@Nullable org.springframework.core.ReactiveAdapterRegistry registry) Configure the registry for reactive type support.RSocketStrategies.Builder.routeMatcher
(@Nullable org.springframework.util.RouteMatcher routeMatcher) Configure aRouteMatcher
for matching routes to message handlers based on route patterns.Method parameters in org.springframework.messaging.rsocket with type arguments of type RSocketStrategies.BuilderModifier and TypeMethodDescriptionRSocketRequester.Builder.rsocketStrategies
(Consumer<RSocketStrategies.Builder> configurer) Customize theRSocketStrategies
.