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 classAbstractMessageCondition<T extends AbstractMessageCondition<T>>Base class forMessageCondition'sthat pre-declares abstract methodsAbstractMessageCondition.getContent()andAbstractMessageCondition.getToStringInfix()in order to provide implementations ofAbstractMessageCondition.equals(Object),AbstractMessageCondition.hashCode(), andAbstractMessageCondition.toString().classCompositeMessageConditionCompositeMessageConditionthat delegates to other message conditions.classDestinationPatternsMessageConditionMessageConditionto 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 classRSocketFrameTypeMessageConditionA 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 classSimpMessageMappingInfoMessageConditionfor SImple Messaging Protocols.classSimpMessageTypeMessageConditionMessageConditionthat matches by the message type obtained viaSimpMessageHeaderAccessor.getMessageType(Map).