Annotation Interface RSocketExchange
Annotation to declare a method on an RSocket service interface as an RSocket
endpoint. The endpoint route is determined through the annotation attribute,
and through the method arguments.
The annotation is supported at the type level to express a common route, to be inherited by all methods.
Supported method arguments:
Method Argument | Description | Resolver |
---|---|---|
@DestinationVariable |
Add a route variable to expand into the route | DestinationVariableArgumentResolver |
@Payload |
Set the input payload(s) for the request | PayloadArgumentResolver |
Object , if followed by MimeType |
Add a metadata value | MetadataArgumentResolver |
MimeType |
Set the MIME type for the metadata value in the preceding argument | MetadataArgumentResolver |
- Since:
- 6.0
- Author:
- Rossen Stoyanchev
-
Optional Element Summary
-
Element Details
-
value
String valueDestination-based mapping expressed by this annotation. This is eitherAntPathMatcher
orPathPattern
based pattern, depending on which is configured viaRSocketStrategies
inRSocketRequester
.- Default:
- ""
-