public final class AndMessageMatcher<T> extends AbstractMessageMatcherComposite<T>
MessageMatcher
that will return true if all of the passed in
MessageMatcher
instances match.logger, LOGGER
ANY_MESSAGE
Constructor and Description |
---|
AndMessageMatcher(java.util.List<MessageMatcher<T>> messageMatchers)
Creates a new instance
|
AndMessageMatcher(MessageMatcher<T>... messageMatchers)
Creates a new instance
|
Modifier and Type | Method and Description |
---|---|
boolean |
matches(org.springframework.messaging.Message<? extends T> message)
Returns true if the
Message matches, else false |
getMessageMatchers, toString
public AndMessageMatcher(java.util.List<MessageMatcher<T>> messageMatchers)
messageMatchers
- the MessageMatcher
instances to try@SafeVarargs public AndMessageMatcher(MessageMatcher<T>... messageMatchers)
messageMatchers
- the MessageMatcher
instances to trypublic boolean matches(org.springframework.messaging.Message<? extends T> message)
MessageMatcher
Message
matches, else falsemessage
- the Message
to match onMessage
matches, else false