Uses of Class
org.jboss.jms.destination.JBossDestination

Packages that use JBossDestination
org.jboss.jms.client   
org.jboss.jms.client.delegate   
org.jboss.jms.delegate   
org.jboss.jms.destination   
org.jboss.jms.message   
org.jboss.jms.server.endpoint   
org.jboss.jms.server.endpoint.advised   
org.jboss.jms.server.plugin   
org.jboss.jms.server.plugin.contract   
org.jboss.messaging.core.message   
 

Uses of JBossDestination in org.jboss.jms.client
 

Constructors in org.jboss.jms.client with parameters of type JBossDestination
JBossConnectionConsumer(ConnectionDelegate conn, JBossDestination dest, java.lang.String subName, java.lang.String messageSelector, ServerSessionPool sessPool, int maxMessages)
          JBossConnectionConsumer constructor
 

Uses of JBossDestination in org.jboss.jms.client.delegate
 

Methods in org.jboss.jms.client.delegate that return JBossDestination
 JBossDestination ClientProducerDelegate.getDestination()
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 JBossDestination ClientConsumerDelegate.getDestination()
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 

Methods in org.jboss.jms.client.delegate with parameters of type JBossDestination
 void ClientSessionDelegate.addTemporaryDestination(JBossDestination destination)
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 BrowserDelegate ClientSessionDelegate.createBrowserDelegate(JBossDestination queue, java.lang.String messageSelector)
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 ConsumerDelegate ClientSessionDelegate.createConsumerDelegate(JBossDestination destination, java.lang.String selector, boolean noLocal, java.lang.String subscriptionName, boolean connectionConsumer)
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 ProducerDelegate ClientSessionDelegate.createProducerDelegate(JBossDestination destination)
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 void ClientSessionDelegate.deleteTemporaryDestination(JBossDestination destination)
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 void ClientProducerDelegate.send(JBossDestination destination, Message message, int deliveryMode, int priority, long timeToLive)
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 void ClientProducerDelegate.setDestination(JBossDestination dest)
          This invocation should either be handled by the client-side interceptor chain or by the server-side endpoint.
 

Uses of JBossDestination in org.jboss.jms.delegate
 

Methods in org.jboss.jms.delegate that return JBossDestination
 JBossDestination ProducerDelegate.getDestination()
           
 JBossDestination ConsumerDelegate.getDestination()
           
 

Methods in org.jboss.jms.delegate with parameters of type JBossDestination
 void ProducerDelegate.setDestination(JBossDestination dest)
           
 void ProducerDelegate.send(JBossDestination destination, Message message, int deliveryMode, int priority, long timeToLive)
          This method is only handled by the advice stack, the corresponding invocation is never sent to the server.
 ProducerDelegate SessionDelegate.createProducerDelegate(JBossDestination destination)
           
 

Uses of JBossDestination in org.jboss.jms.destination
 

Subclasses of JBossDestination in org.jboss.jms.destination
 class JBossQueue
           
 class JBossTemporaryQueue
           
 class JBossTemporaryTopic
           
 class JBossTopic
           
 

Uses of JBossDestination in org.jboss.jms.message
 

Fields in org.jboss.jms.message declared as JBossDestination
protected  JBossDestination JBossMessage.destination
           
protected  JBossDestination JBossMessage.replyToDestination
           
 

Methods in org.jboss.jms.message that return JBossDestination
protected  JBossDestination JBossMessage.readDestination(java.io.ObjectInput in)
           
 

Constructors in org.jboss.jms.message with parameters of type JBossDestination
JBossBytesMessage(long messageID, boolean reliable, long expiration, long timestamp, byte priority, java.util.Map coreHeaders, byte[] payloadAsByteArray, int persistentChannelCount, java.lang.String jmsType, java.lang.String correlationID, byte[] correlationIDBytes, JBossDestination destination, JBossDestination replyTo, java.util.HashMap jmsProperties)
           
JBossStreamMessage(long messageID, boolean reliable, long expiration, long timestamp, byte priority, java.util.Map coreHeaders, byte[] payloadAsByteArray, int persistentChannelCount, java.lang.String jmsType, java.lang.String correlationID, byte[] correlationIDBytes, JBossDestination destination, JBossDestination replyTo, java.util.HashMap jmsProperties)
           
JBossMapMessage(long messageID, boolean reliable, long expiration, long timestamp, byte priority, java.util.Map coreHeaders, byte[] payloadAsByteArray, int persistentChannelCount, java.lang.String jmsType, java.lang.String correlationID, byte[] correlationIDBytes, JBossDestination destination, JBossDestination replyTo, java.util.HashMap jmsProperties)
           
JBossObjectMessage(long messageID, boolean reliable, long expiration, long timestamp, byte priority, java.util.Map coreHeaders, byte[] payloadAsByteArray, int persistentChannelCount, java.lang.String jmsType, java.lang.String correlationID, byte[] correlationIDBytes, JBossDestination destination, JBossDestination replyTo, java.util.HashMap jmsProperties)
           
JBossMessage(long messageID, boolean reliable, long expiration, long timestamp, byte priority, java.util.Map coreHeaders, byte[] payloadAsByteArray, int persistentChannelCount, java.lang.String jmsType, java.lang.String correlationID, byte[] correlationIDBytes, JBossDestination destination, JBossDestination replyTo, java.util.HashMap jmsProperties)
           
JBossTextMessage(long messageID, boolean reliable, long expiration, long timestamp, byte priority, java.util.Map coreHeaders, byte[] payloadAsByteArray, int persistentChannelCount, java.lang.String jmsType, java.lang.String correlationID, byte[] correlationIDBytes, JBossDestination destination, JBossDestination replyTo, java.util.HashMap jmsProperties)
           
 

Uses of JBossDestination in org.jboss.jms.server.endpoint
 

Methods in org.jboss.jms.server.endpoint that return JBossDestination
 JBossDestination ServerConsumerEndpoint.getDestination()
           
 

Methods in org.jboss.jms.server.endpoint with parameters of type JBossDestination
 ConsumerDelegate ServerSessionEndpoint.createConsumerDelegate(JBossDestination jmsDestination, java.lang.String selector, boolean noLocal, java.lang.String subscriptionName, boolean isCC)
           
 BrowserDelegate ServerSessionEndpoint.createBrowserDelegate(JBossDestination jmsDestination, java.lang.String messageSelector)
           
 void ServerSessionEndpoint.addTemporaryDestination(JBossDestination dest)
           
 void ServerSessionEndpoint.deleteTemporaryDestination(JBossDestination dest)
           
 ConsumerDelegate SessionEndpoint.createConsumerDelegate(JBossDestination destination, java.lang.String selector, boolean noLocal, java.lang.String subscriptionName, boolean connectionConsumer)
           
 BrowserDelegate SessionEndpoint.createBrowserDelegate(JBossDestination queue, java.lang.String messageSelector)
           
 void SessionEndpoint.addTemporaryDestination(JBossDestination destination)
          Add a temporary destination.
 void SessionEndpoint.deleteTemporaryDestination(JBossDestination destination)
          Delete a temporary destination
 

Constructors in org.jboss.jms.server.endpoint with parameters of type JBossDestination
ServerConsumerEndpoint(int id, Channel channel, ServerSessionEndpoint sessionEndpoint, java.lang.String selector, boolean noLocal, JBossDestination dest, int prefetchSize, CoreDestination dlq)
           
 

Uses of JBossDestination in org.jboss.jms.server.endpoint.advised
 

Methods in org.jboss.jms.server.endpoint.advised with parameters of type JBossDestination
 ConsumerDelegate SessionAdvised.createConsumerDelegate(JBossDestination destination, java.lang.String selector, boolean noLocal, java.lang.String subscriptionName, boolean connectionConsumer)
           
 BrowserDelegate SessionAdvised.createBrowserDelegate(JBossDestination queue, java.lang.String messageSelector)
           
 void SessionAdvised.addTemporaryDestination(JBossDestination destination)
           
 void SessionAdvised.deleteTemporaryDestination(JBossDestination destination)
           
 

Uses of JBossDestination in org.jboss.jms.server.plugin
 

Methods in org.jboss.jms.server.plugin that return JBossDestination
 JBossDestination JDBCChannelMapper.getJBossDestination(long coreDestinationId)
           
 

Methods in org.jboss.jms.server.plugin with parameters of type JBossDestination
 CoreDestination JDBCChannelMapper.getCoreDestination(JBossDestination jbDest)
           
 

Uses of JBossDestination in org.jboss.jms.server.plugin.contract
 

Methods in org.jboss.jms.server.plugin.contract that return JBossDestination
 JBossDestination ChannelMapper.getJBossDestination(long coreDestinationID)
           
 

Methods in org.jboss.jms.server.plugin.contract with parameters of type JBossDestination
 CoreDestination ChannelMapper.getCoreDestination(JBossDestination jbDest)
           
 

Uses of JBossDestination in org.jboss.messaging.core.message
 

Methods in org.jboss.messaging.core.message with parameters of type JBossDestination
static Message MessageFactory.createJBossMessage(long messageID, boolean reliable, long expiration, long timestamp, byte priority, java.util.Map coreHeaders, byte[] payloadAsByteArray, int persistentChannelCount, byte type, java.lang.String jmsType, java.lang.String correlationID, byte[] correlationIDBytes, JBossDestination destination, JBossDestination replyTo, java.util.HashMap jmsProperties)
           
 



Copyright © 2006 JBoss Inc. All Rights Reserved.