Uses of Class
org.codehaus.activemq.message.ActiveMQDestination

Packages that use ActiveMQDestination
org.codehaus.activemq The core JMS client implementation classes 
org.codehaus.activemq.broker The API for the JMS Broker which is the server side of a JMS network though it may be deployed inside a client in peer style networks. 
org.codehaus.activemq.broker.impl The default implementation of the JMS Broker  
org.codehaus.activemq.filter Filter implementations for wildcards & JMS selectors  
org.codehaus.activemq.message Message implementations  
org.codehaus.activemq.security.jassjacc   
org.codehaus.activemq.service The core services which make up the JMS Message Broker such as the Store, MessageContainer and MessageContainerManager  
org.codehaus.activemq.service.boundedvm   
org.codehaus.activemq.service.impl Default implementations of the services  
 

Uses of ActiveMQDestination in org.codehaus.activemq
 

Fields in org.codehaus.activemq declared as ActiveMQDestination
protected  ActiveMQDestination ActiveMQMessageConsumer.destination
           
protected  ActiveMQDestination ActiveMQMessageProducer.defaultDestination
           
 

Methods in org.codehaus.activemq that return ActiveMQDestination
protected  ActiveMQDestination ActiveMQMessageConsumer.getDestination()
           
 

Methods in org.codehaus.activemq with parameters of type ActiveMQDestination
 void ActiveMQConnection.destroyDestination(ActiveMQDestination destination)
          Tells the broker to destroy a destination.
 

Constructors in org.codehaus.activemq with parameters of type ActiveMQDestination
ActiveMQTopicSubscriber(ActiveMQSession theSession, ActiveMQDestination dest, String name, String selector, int cnum, int prefetch, boolean noLocalValue, boolean browserValue)
           
ActiveMQMessageConsumer(ActiveMQSession theSession, ActiveMQDestination dest, String name, String selector, int cnum, int prefetch, boolean noLocalValue, boolean browserValue)
          Create a MessageConsumer
ActiveMQMessageProducer(ActiveMQSession theSession, ActiveMQDestination destination)
           
ActiveMQQueueReceiver(ActiveMQSession theSession, ActiveMQDestination dest, String selector, int cnum, int prefetch)
           
ActiveMQQueueSender(ActiveMQSession session, ActiveMQDestination destination)
           
ActiveMQQueueBrowser(ActiveMQSession theSession, ActiveMQDestination dest, String selector, int cnum)
          Constructor for an ActiveMQQueueBrowser - used internally
ActiveMQTopicPublisher(ActiveMQSession session, ActiveMQDestination destination)
           
 

Uses of ActiveMQDestination in org.codehaus.activemq.broker
 

Methods in org.codehaus.activemq.broker with parameters of type ActiveMQDestination
 void BrokerAdmin.createMessageContainer(ActiveMQDestination dest)
           
 void BrokerAdmin.destoryMessageContainer(ActiveMQDestination dest)
           
 MessageContainerAdmin BrokerAdmin.getMessageContainerAdmin(ActiveMQDestination dest)
           
 

Uses of ActiveMQDestination in org.codehaus.activemq.broker.impl
 

Methods in org.codehaus.activemq.broker.impl with parameters of type ActiveMQDestination
 void DefaultBroker.createMessageContainer(ActiveMQDestination dest)
           
 void DefaultBroker.destoryMessageContainer(ActiveMQDestination dest)
           
 MessageContainerAdmin DefaultBroker.getMessageContainerAdmin(ActiveMQDestination dest)
           
 

Uses of ActiveMQDestination in org.codehaus.activemq.filter
 

Methods in org.codehaus.activemq.filter with parameters of type ActiveMQDestination
 Set DestinationMap.get(ActiveMQDestination key)
          Looks up the value(s) matching the given Destination key.
 void DestinationMap.put(ActiveMQDestination key, Object value)
           
 void DestinationMap.remove(ActiveMQDestination key, Object value)
          Removes the value from the associated destination
protected  Set DestinationMap.findWildcardMatches(ActiveMQDestination key)
           
 

Constructors in org.codehaus.activemq.filter with parameters of type ActiveMQDestination
CompositeDestinationFilter(ActiveMQDestination destination)
           
 

Uses of ActiveMQDestination in org.codehaus.activemq.message
 

Subclasses of ActiveMQDestination in org.codehaus.activemq.message
 class ActiveMQQueue
          A Queue object encapsulates a provider-specific queue name.
 class ActiveMQTemporaryQueue
          A TemporaryQueue object is a unique Queue object created for the duration of a Connection.
 class ActiveMQTemporaryTopic
          A TemporaryTopic object is a unique Topic object created for the duration of a Connection.
 class ActiveMQTopic
          A Topic object encapsulates a provider-specific topic name.
 

Methods in org.codehaus.activemq.message that return ActiveMQDestination
 ActiveMQDestination ActiveMQMessage.getJMSActiveMQDestination()
           
 ActiveMQDestination ProducerInfo.getDestination()
           
 ActiveMQDestination MessageAck.getDestination()
           
static ActiveMQDestination ActiveMQDestination.transformDestination(Destination destination)
           
static ActiveMQDestination ActiveMQDestination.readFromStream(DataInput dataIn)
          Read an ActiveMQDestination from a Stream
 ActiveMQDestination BrokerAdminCommand.getDestination()
           
 ActiveMQDestination ConsumerInfo.getDestination()
           
 

Methods in org.codehaus.activemq.message with parameters of type ActiveMQDestination
 void ProducerInfo.setDestination(ActiveMQDestination newDestination)
           
 void MessageAck.setDestination(ActiveMQDestination destination)
           
static void ActiveMQDestination.writeToStream(ActiveMQDestination destination, DataOutput dataOut)
          Write an ActiveMQDestination to a Stream
static String ActiveMQDestination.getClientId(ActiveMQDestination destination)
          From a temporary destination find the clientId of the Connection that created it
 int ActiveMQDestination.compareTo(ActiveMQDestination that)
          Lets sort by name first then lets sort topics greater than queues
 boolean ActiveMQDestination.matches(ActiveMQDestination destination)
          Returns true if the given destination matches this destination; including wildcards
 void BrokerAdminCommand.setDestination(ActiveMQDestination newDestination)
           
 void ConsumerInfo.setDestination(ActiveMQDestination newDestination)
           
 

Uses of ActiveMQDestination in org.codehaus.activemq.security.jassjacc
 

Methods in org.codehaus.activemq.security.jassjacc that return ActiveMQDestination
 ActiveMQDestination DestinationSecurityConfig.getDestination()
           
 

Methods in org.codehaus.activemq.security.jassjacc with parameters of type ActiveMQDestination
 void DestinationSecurityConfig.setDestination(ActiveMQDestination destination)
           
 

Uses of ActiveMQDestination in org.codehaus.activemq.service
 

Methods in org.codehaus.activemq.service that return ActiveMQDestination
 ActiveMQDestination Subscription.getDestination()
           
 

Methods in org.codehaus.activemq.service with parameters of type ActiveMQDestination
 void MessageContainerManager.createMessageContainer(ActiveMQDestination dest)
          Creates a destination.
 void MessageContainerManager.destroyMessageContainer(ActiveMQDestination dest)
          Destroys a destination.
 Set SubscriptionContainer.getSubscriptions(ActiveMQDestination destination)
           
 String DeadLetterPolicy.getDeadLetterNameFromDestination(ActiveMQDestination destination)
          Get the name of the DLQ from the destination provided
 

Uses of ActiveMQDestination in org.codehaus.activemq.service.boundedvm
 

Methods in org.codehaus.activemq.service.boundedvm that return ActiveMQDestination
 ActiveMQDestination TransientQueueBoundedMessageContainer.getDestination()
           
 

Methods in org.codehaus.activemq.service.boundedvm with parameters of type ActiveMQDestination
protected  boolean TransientTopicBoundedMessageManager.hasConsumerFor(ActiveMQDestination destination)
           
 void TransientTopicBoundedMessageManager.createMessageContainer(ActiveMQDestination dest)
           
 void TransientTopicBoundedMessageManager.destroyMessageContainer(ActiveMQDestination dest)
           
 boolean TransientTopicBoundedMessageContainer.hasConsumerFor(ActiveMQDestination destination)
           
 void TransientQueueBoundedMessageManager.createMessageContainer(ActiveMQDestination dest)
           
 void TransientQueueBoundedMessageManager.destroyMessageContainer(ActiveMQDestination dest)
           
 

Constructors in org.codehaus.activemq.service.boundedvm with parameters of type ActiveMQDestination
TransientQueueBoundedMessageContainer(Executor threadPool, MemoryBoundedQueueManager queueManager, ActiveMQDestination destination, RedeliveryPolicy redeliveryPolicy, DeadLetterPolicy deadLetterPolicy)
          Construct this beast
 

Uses of ActiveMQDestination in org.codehaus.activemq.service.impl
 

Methods in org.codehaus.activemq.service.impl that return ActiveMQDestination
 ActiveMQDestination SubscriptionImpl.getDestination()
           
 

Methods in org.codehaus.activemq.service.impl with parameters of type ActiveMQDestination
 Set SubscriptionContainerImpl.getSubscriptions(ActiveMQDestination destination)
           
 void DurableTopicMessageContainerManager.createMessageContainer(ActiveMQDestination dest)
           
 void DurableTopicMessageContainerManager.destroyMessageContainer(ActiveMQDestination dest)
           
protected  boolean InitialImageMessageContainerManager.isValid(ActiveMQDestination destination)
          Does this message match the destinations on which initial image caching should be used
 void ProxyMessageContainerManager.createMessageContainer(ActiveMQDestination destination)
           
 void ProxyMessageContainerManager.destroyMessageContainer(ActiveMQDestination destination)
           
 void DurableQueueMessageContainerManager.createMessageContainer(ActiveMQDestination dest)
           
 void DurableQueueMessageContainerManager.destroyMessageContainer(ActiveMQDestination dest)
           
 void MessageContainerManagerSupport.createMessageContainer(ActiveMQDestination dest)
           
 void MessageContainerManagerSupport.destroyMessageContainer(ActiveMQDestination dest)
           
 



Copyright © 2004-2005 Protique, Ltd.. All Rights Reserved.