Uses of Interface
org.springframework.messaging.handler.MessageCondition
Packages that use MessageCondition Package Description org.springframework.messaging.handler Basic abstractions for working with message handler methods.org.springframework.messaging.rsocket.annotation.support Support classes for working with annotated RSocket stream handling methods.org.springframework.messaging.simp Generic support for Simple Messaging Protocols including protocols such as STOMP.Uses of MessageCondition in org.springframework.messaging.handler
Classes in org.springframework.messaging.handler that implement MessageCondition Modifier and Type Class Description class
AbstractMessageCondition<T extends AbstractMessageCondition<T>>
Base class forMessageCondition's
that pre-declares abstract methodsAbstractMessageCondition.getContent()
andAbstractMessageCondition.getToStringInfix()
in order to provide implementations ofAbstractMessageCondition.equals(Object)
,AbstractMessageCondition.hashCode()
, andAbstractMessageCondition.toString()
.class
CompositeMessageCondition
CompositeMessageCondition
that delegates to other message conditions.class
DestinationPatternsMessageCondition
MessageCondition
to match the destination header of a Message against one or more patterns through aRouteMatcher
.Methods in org.springframework.messaging.handler with type parameters of type MessageCondition Modifier and Type Method Description <T extends MessageCondition<T>>
TCompositeMessageCondition. getCondition(Class<T> messageConditionType)
Methods in org.springframework.messaging.handler that return types with arguments of type MessageCondition Modifier and Type Method Description List<MessageCondition<?>>
CompositeMessageCondition. getMessageConditions()
Constructors in org.springframework.messaging.handler with parameters of type MessageCondition Constructor Description CompositeMessageCondition(MessageCondition<?>... messageConditions)
Uses of MessageCondition in org.springframework.messaging.rsocket.annotation.support
Classes in org.springframework.messaging.rsocket.annotation.support that implement MessageCondition Modifier and Type Class Description class
RSocketFrameTypeMessageCondition
A condition to assist with mapping onto handler methods based on the RSocket frame type.Uses of MessageCondition in org.springframework.messaging.simp
Classes in org.springframework.messaging.simp that implement MessageCondition Modifier and Type Class Description class
SimpMessageMappingInfo
MessageCondition
for SImple Messaging Protocols.class
SimpMessageTypeMessageCondition
MessageCondition
that matches by the message type obtained viaSimpMessageHeaderAccessor.getMessageType(Map)
.