Interface VirtualDestination
-
- All Superinterfaces:
DestinationInterceptor
- All Known Implementing Classes:
CompositeDestination
,CompositeQueue
,CompositeTopic
,VirtualTopic
public interface VirtualDestination extends DestinationInterceptor
Represents some kind of virtual destination.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActiveMQDestination
getMappedDestinations()
Returns mapped destination(s)ActiveMQDestination
getVirtualDestination()
Returns the virtual destinationDestination
intercept(Destination destination)
Creates a virtual destination from the physical destinationDestination
interceptMappedDestination(Destination destination)
Creates a mapped destination-
Methods inherited from interface org.apache.activemq.broker.region.DestinationInterceptor
create, remove
-
-
-
-
Method Detail
-
getVirtualDestination
ActiveMQDestination getVirtualDestination()
Returns the virtual destination
-
intercept
Destination intercept(Destination destination)
Creates a virtual destination from the physical destination- Specified by:
intercept
in interfaceDestinationInterceptor
-
getMappedDestinations
ActiveMQDestination getMappedDestinations()
Returns mapped destination(s)
-
interceptMappedDestination
Destination interceptMappedDestination(Destination destination)
Creates a mapped destination
-
-