Package org.apache.activemq.store
Interface PersistenceAdapterSupport.DestinationMatcher
-
- Enclosing class:
- PersistenceAdapterSupport
public static interface PersistenceAdapterSupport.DestinationMatcher
Provides an interface for a Destination matching object that can be used to search for specific destinations from a persistence adapter.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(ActiveMQDestination destination)
Given a Destination object, return true if the destination matches some defined search criteria, false otherwise.
-
-
-
Method Detail
-
matches
boolean matches(ActiveMQDestination destination)
Given a Destination object, return true if the destination matches some defined search criteria, false otherwise.- Parameters:
destination
- the destination to inspect.- Returns:
- true if the destination matches the target criteria, false otherwise.
-
-