Uses of Class
org.springframework.messaging.handler.DestinationPatternsMessageCondition
Packages that use DestinationPatternsMessageCondition Package Description org.springframework.messaging.handler Basic abstractions for working with message handler methods.org.springframework.messaging.simp Generic support for Simple Messaging Protocols including protocols such as STOMP.Uses of DestinationPatternsMessageCondition in org.springframework.messaging.handler
Methods in org.springframework.messaging.handler that return DestinationPatternsMessageCondition Modifier and Type Method Description DestinationPatternsMessageCondition
DestinationPatternsMessageCondition. combine(DestinationPatternsMessageCondition other)
Returns a new instance with URL patterns from the current instance ("this") and the "other" instance as follows: If there are patterns in both instances, combine the patterns in "this" with the patterns in "other" usingPathMatcher.combine(String, String)
.DestinationPatternsMessageCondition
DestinationPatternsMessageCondition. getMatchingCondition(Message<?> message)
Check if any of the patterns match the given Message destination and return an instance that is guaranteed to contain matching patterns, sorted viaPathMatcher.getPatternComparator(String)
.Methods in org.springframework.messaging.handler with parameters of type DestinationPatternsMessageCondition Modifier and Type Method Description DestinationPatternsMessageCondition
DestinationPatternsMessageCondition. combine(DestinationPatternsMessageCondition other)
Returns a new instance with URL patterns from the current instance ("this") and the "other" instance as follows: If there are patterns in both instances, combine the patterns in "this" with the patterns in "other" usingPathMatcher.combine(String, String)
.int
DestinationPatternsMessageCondition. compareTo(DestinationPatternsMessageCondition other, Message<?> message)
Compare the two conditions based on the destination patterns they contain.Uses of DestinationPatternsMessageCondition in org.springframework.messaging.simp
Methods in org.springframework.messaging.simp that return DestinationPatternsMessageCondition Modifier and Type Method Description DestinationPatternsMessageCondition
SimpMessageMappingInfo. getDestinationConditions()
Constructors in org.springframework.messaging.simp with parameters of type DestinationPatternsMessageCondition Constructor Description SimpMessageMappingInfo(SimpMessageTypeMessageCondition messageTypeMessageCondition, DestinationPatternsMessageCondition destinationConditions)