Interface SimpSubscriptionMatcher
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
A strategy for matching subscriptions.
- Since:
 - 4.2
 - Author:
 - Rossen Stoyanchev
 
- 
Method Summary
Modifier and TypeMethodDescriptionbooleanmatch(SimpSubscription subscription) Match the given subscription. 
- 
Method Details
- 
match
Match the given subscription.- Parameters:
 subscription- the subscription to match- Returns:
 truein case of a match,falseotherwise
 
 -