Uses of Interface
org.apache.activemq.broker.region.Destination

Packages that use Destination
org.apache.activemq.advisory Support for JMS Advisory messages as well as some helper listeners to listen to the clients, producers and consumers available. 
org.apache.activemq.broker The core classes for the ActiveMQ Message Broker and its connectors. 
org.apache.activemq.broker.jmx JMX MBeans for the broker and its core connectors. 
org.apache.activemq.broker.region Region abstraction and implementations in the Broker. 
org.apache.activemq.broker.region.cursors   
org.apache.activemq.broker.region.policy The policies which can be associated with a particular destination or wildcard. 
org.apache.activemq.broker.region.virtual Implementation classes for Virtual Destinations 
org.apache.activemq.broker.view Broker Plugins for visualising the current system 
org.apache.activemq.command Command objects used via the Command Pattern to communicate among nodes 
org.apache.activemq.security Plugable Security Adapter framework along with default implementations such as the JAAS implementation. 
 

Uses of Destination in org.apache.activemq.advisory
 

Methods in org.apache.activemq.advisory that return Destination
 Destination AdvisoryBroker.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 

Uses of Destination in org.apache.activemq.broker
 

Methods in org.apache.activemq.broker that return Destination
 Destination EmptyBroker.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 Destination ErrorBroker.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 Destination MutableBrokerFilter.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 Destination BrokerFilter.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 Destination BrokerBroadcaster.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 

Uses of Destination in org.apache.activemq.broker.jmx
 

Fields in org.apache.activemq.broker.jmx declared as Destination
protected  Destination DestinationView.destination
           
 

Methods in org.apache.activemq.broker.jmx that return Destination
protected  Destination ManagedTempQueueRegion.createDestination(ConnectionContext context, ActiveMQDestination destination)
           
protected  Destination ManagedTempTopicRegion.createDestination(ConnectionContext context, ActiveMQDestination destination)
           
protected  Destination ManagedQueueRegion.createDestination(ConnectionContext context, ActiveMQDestination destination)
           
protected  Destination ManagedTopicRegion.createDestination(ConnectionContext context, ActiveMQDestination destination)
           
 

Methods in org.apache.activemq.broker.jmx with parameters of type Destination
 void ManagedRegionBroker.register(ActiveMQDestination destName, Destination destination)
           
 

Constructors in org.apache.activemq.broker.jmx with parameters of type Destination
DestinationView(ManagedRegionBroker broker, Destination destination)
           
 

Uses of Destination in org.apache.activemq.broker.region
 

Classes in org.apache.activemq.broker.region that implement Destination
 class DestinationFilter
           
 class Queue
          The Queue is a List of MessageEntry objects that are dispatched to matching subscriptions.
 class Topic
          The Topic is a destination that sends a copy of a message to every active Subscription registered.
 

Methods in org.apache.activemq.broker.region that return Destination
 Destination Region.addDestination(ConnectionContext context, ActiveMQDestination destination)
          Used to create a destination.
 Destination RegionBroker.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 Destination AbstractRegion.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
protected  Destination TopicRegion.createDestination(ConnectionContext context, ActiveMQDestination destination)
           
protected  Destination TempQueueRegion.createDestination(ConnectionContext context, ActiveMQDestination destination)
           
protected  Destination AbstractRegion.createDestination(ConnectionContext context, ActiveMQDestination destination)
           
 Destination DestinationFactoryImpl.createDestination(ConnectionContext context, ActiveMQDestination destination, DestinationStatistics destinationStatistics)
           
abstract  Destination DestinationFactory.createDestination(ConnectionContext context, ActiveMQDestination destination, DestinationStatistics destinationStatistics)
          Create destination implementation.
 Destination MessageReference.getRegionDestination()
           
 Destination IndirectMessageReference.getRegionDestination()
           
 Destination DestinationInterceptor.intercept(Destination destination)
           
 Destination CompositeDestinationInterceptor.intercept(Destination destination)
           
protected  Destination AbstractRegion.lookup(ConnectionContext context, ActiveMQDestination destination)
           
 

Methods in org.apache.activemq.broker.region with parameters of type Destination
 void AbstractSubscription.add(ConnectionContext context, Destination destination)
           
 void DurableTopicSubscription.add(ConnectionContext context, Destination destination)
           
 void Subscription.add(ConnectionContext context, Destination destination)
          The subscription will be receiving messages from the destination.
 void PrefetchSubscription.add(ConnectionContext context, Destination destination)
           
 Destination DestinationInterceptor.intercept(Destination destination)
           
 Destination CompositeDestinationInterceptor.intercept(Destination destination)
           
 void AbstractSubscription.remove(ConnectionContext context, Destination destination)
           
 void Subscription.remove(ConnectionContext context, Destination destination)
          The subscription will be no longer be receiving messages from the destination.
 void PrefetchSubscription.remove(ConnectionContext context, Destination destination)
           
 

Constructors in org.apache.activemq.broker.region with parameters of type Destination
DestinationFilter(Destination next)
           
 

Uses of Destination in org.apache.activemq.broker.region.cursors
 

Methods in org.apache.activemq.broker.region.cursors with parameters of type Destination
 void StoreDurableSubscriberCursor.add(ConnectionContext context, Destination destination)
          Add a destination
 void AbstractPendingMessageCursor.add(ConnectionContext context, Destination destination)
           
 void PendingMessageCursor.add(ConnectionContext context, Destination destination)
          Add a destination
 void StoreDurableSubscriberCursor.remove(ConnectionContext context, Destination destination)
          remove a destination
 void AbstractPendingMessageCursor.remove(ConnectionContext context, Destination destination)
           
 void PendingMessageCursor.remove(ConnectionContext context, Destination destination)
          remove a destination
 

Uses of Destination in org.apache.activemq.broker.region.policy
 

Methods in org.apache.activemq.broker.region.policy with parameters of type Destination
protected  void QueryBasedSubscriptionRecoveryPolicy.dispatchInitialMessage(javax.jms.Message message, Destination regionDestination, MessageEvaluationContext msgContext, Subscription sub)
           
 

Uses of Destination in org.apache.activemq.broker.region.virtual
 

Classes in org.apache.activemq.broker.region.virtual that implement Destination
 class CompositeDestinationInterceptor
          Represents a composite Destination where send()s are replicated to each Destination instance.
 class VirtualTopicInterceptor
          A Destination which implements Virtual Topic
 

Methods in org.apache.activemq.broker.region.virtual that return Destination
protected  Destination VirtualDestinationInterceptor.createCompositeDestination(Destination destination, java.util.List destinations)
           
 Destination CompositeDestination.intercept(Destination destination)
           
 Destination VirtualTopic.intercept(Destination destination)
           
 Destination VirtualDestination.intercept(Destination destination)
          Creates a virtual destination from the physical destination
 Destination VirtualDestinationInterceptor.intercept(Destination destination)
           
 

Methods in org.apache.activemq.broker.region.virtual with parameters of type Destination
protected  Destination VirtualDestinationInterceptor.createCompositeDestination(Destination destination, java.util.List destinations)
           
 Destination CompositeDestination.intercept(Destination destination)
           
 Destination VirtualTopic.intercept(Destination destination)
           
 Destination VirtualDestination.intercept(Destination destination)
          Creates a virtual destination from the physical destination
 Destination VirtualDestinationInterceptor.intercept(Destination destination)
           
 

Constructors in org.apache.activemq.broker.region.virtual with parameters of type Destination
CompositeDestinationInterceptor(Destination next, java.util.Collection forwardDestinations, boolean forwardOnly, boolean copyMessage)
           
VirtualTopicInterceptor(Destination next, java.lang.String prefix, java.lang.String postfix)
           
 

Uses of Destination in org.apache.activemq.broker.view
 

Methods in org.apache.activemq.broker.view that return Destination
 Destination DestinationDotFileInterceptor.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 

Uses of Destination in org.apache.activemq.command
 

Methods in org.apache.activemq.command that return Destination
 Destination Message.getRegionDestination()
           
 

Methods in org.apache.activemq.command with parameters of type Destination
 void Message.setRegionDestination(Destination destination)
           
 

Uses of Destination in org.apache.activemq.security
 

Methods in org.apache.activemq.security that return Destination
 Destination AuthorizationBroker.addDestination(ConnectionContext context, ActiveMQDestination destination)
           
 



Copyright © 2009 Apache Software Foundation. All Rights Reserved.