Interface IntegrationRSocketEndpoint
- All Superinterfaces:
ReactiveMessageHandler
- All Known Implementing Classes:
RSocketInboundGateway
public interface IntegrationRSocketEndpoint extends ReactiveMessageHandler
A marker
ReactiveMessageHandler
extension interface for Spring Integration
inbound endpoints.
It is used as mapping predicate in the internal RSocket acceptor of the
AbstractRSocketConnector
.- Since:
- 5.2
- Author:
- Artem Bilan
- See Also:
AbstractRSocketConnector
,RSocketInboundGateway
-
Method Summary
Modifier and Type Method Description default RSocketInteractionModel[]
getInteractionModels()
ObtainRSocketInteractionModel
s thisReactiveMessageHandler
is going to be mapped onto.String[]
getPath()
Obtain path patterns thisReactiveMessageHandler
is going to be mapped onto.
-
Method Details
-
getPath
String[] getPath()Obtain path patterns thisReactiveMessageHandler
is going to be mapped onto.- Returns:
- the path patterns for mapping.
-
getInteractionModels
ObtainRSocketInteractionModel
s thisReactiveMessageHandler
is going to be mapped onto. Defaults to all theRSocketInteractionModel
s.- Returns:
- the interaction models for mapping.
- Since:
- 5.2.2
-