Uses of Class
org.springframework.integration.rsocket.dsl.RSocketOutboundGatewaySpec
Package
Description
Provides RSocket Components support for Spring Integration Java DSL.
-
Uses of RSocketOutboundGatewaySpec in org.springframework.integration.rsocket.dsl
Modifier and TypeMethodDescriptionRSocketOutboundGatewaySpec.clientRSocketConnector
(ClientRSocketConnector clientRSocketConnector) Configure aClientRSocketConnector
for client side requests based on the connection provided by theClientRSocketConnector.getRequester()
.RSocketOutboundGatewaySpec.expectedResponseType
(Class<?> expectedResponseType) Specify the expected response type for the RSocket response.RSocketOutboundGatewaySpec.expectedResponseType
(String expectedResponseTypeExpression) Specify theExpression
to determine the type for the RSocket response.RSocketOutboundGatewaySpec.expectedResponseType
(Function<Message<P>, ?> expectedResponseTypeFunction) Specify theFunction
to determine the type for the RSocket response.RSocketOutboundGatewaySpec.expectedResponseType
(Expression expectedResponseTypeExpression) Specify anExpression
to determine the type for the RSocket response.RSocketOutboundGatewaySpec.interactionModel
(String interactionModelExpression) Configure a SpEL expression to evaluate anRSocketInteractionModel
for the RSocket request type at runtime against a request message.RSocketOutboundGatewaySpec.interactionModel
(Function<Message<P>, ?> interactionModelFunction) Configure aFunction
to evaluate anRSocketInteractionModel
for the RSocket request type at runtime against a request message.RSocketOutboundGatewaySpec.interactionModel
(Expression interactionModelExpression) Configure a SpEL expression to evaluate anRSocketInteractionModel
for the RSocket request type at runtime against a request message.RSocketOutboundGatewaySpec.interactionModel
(RSocketInteractionModel interactionModel) Configure anRSocketInteractionModel
for the RSocket request type.Configure a SpEL expression to evaluate a metadata as aMap<Object, MimeType>
for the RSocket request against request message.Configure aFunction
to evaluate a metadata as aMap<Object, MimeType>
for RSocket request against request message.RSocketOutboundGatewaySpec.metadata
(Expression metadataExpression) Configure a SpEL expression to evaluate a metadata as aMap<Object, MimeType>
for the RSocket request type at runtime against a request message.static RSocketOutboundGatewaySpec
RSockets.outboundGateway
(String route, Object... routeVariables) Create anRSocketOutboundGatewaySpec
builder for request-reply gateway based on providedroute
and optional variables to expand route template.static <P> RSocketOutboundGatewaySpec
RSockets.outboundGateway
(Function<Message<P>, ?> routeFunction) Create anRSocketOutboundGatewaySpec
builder for request-reply gateway based on providedFunction
to evaluate targetroute
against request message.static RSocketOutboundGatewaySpec
RSockets.outboundGateway
(Expression routeExpression) Create anRSocketOutboundGatewaySpec
builder for request-reply gateway based on provided SpELExpression
to evaluate targetroute
against request message.RSocketOutboundGatewaySpec.publisherElementType
(Class<?> publisherElementType) Configure a type for a requestPublisher
elements.RSocketOutboundGatewaySpec.publisherElementType
(String publisherElementTypeExpression) Configure a SpEL expression to evaluate a requestPublisher
elements type at runtime against a request message.RSocketOutboundGatewaySpec.publisherElementType
(Function<Message<P>, ?> publisherElementTypeFunction) Configure aFunction
to evaluate a requestPublisher
elements type at runtime against a request message.RSocketOutboundGatewaySpec.publisherElementType
(Expression publisherElementTypeExpression) Configure a SpEL expression to evaluate a requestPublisher
elements type at runtime against a request message.