@Target(value={TYPE,METHOD}) @Retention(value=RUNTIME) @Documented public @interface SendToUser
Message
to the specified
destination(s) prepended with "/user/{username}"
where the user name
is extracted from the headers of the input message being handled.
The annotation may also be placed at class-level in which case all methods in the class where the annotation applies will inherit it.
SendToMethodReturnValueHandler
,
UserDestinationMessageHandler
,
SimpMessageHeaderAccessor.getUser()
Modifier and Type | Optional Element and Description |
---|---|
boolean |
broadcast
Whether messages should be sent to all sessions associated with the user
or only to the session of the input message being handled.
|
String[] |
destinations
One or more destinations to send a message to.
|
String[] |
value
Alias for
destinations() . |
@AliasFor(value="destinations") public abstract String[] value
destinations()
.destinations()
@AliasFor(value="value") public abstract String[] destinations
If left unspecified, a default destination is selected based on the destination of the input message being handled.
value()
,
SendToMethodReturnValueHandler