站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档

Uses of Interface javax.jms.Destination (JBoss J2EE API) - JBoss 4.0.1 sp1 j2ee API Documentation 英文版文档


Uses of Interface
javax.jms.Destination

Packages that use Destination
javax.jms This is the basic contract for the Java Message Service - what JBossMQ offers and clients can expect. 
 

Uses of Destination in javax.jms
 

Subinterfaces of Destination in javax.jms
 interface Queue
          A Queue object encapsulates a provider-specific queue name.
 interface TemporaryQueue
          A TemporaryQueue object is a unique Queue object created for the duration of a Connection.
 interface TemporaryTopic
          A TemporaryTopic object is a unique Topic object created for the duration of a Connection.
 interface Topic
          A Topic object encapsulates a provider-specific topic name.
 

Methods in javax.jms that return Destination
 Destination MessageProducer.getDestination()
          Gets the destination associated with this MessageProducer.
 Destination Message.getJMSReplyTo()
          Gets the Destination object to which a reply to this message should be sent.
 Destination Message.getJMSDestination()
          Gets the Destination object for this message.
 

Methods in javax.jms with parameters of type Destination
 MessageProducer Session.createProducer(Destination destination)
          Creates a MessageProducer to send messages to the specified destination.
 MessageConsumer Session.createConsumer(Destination destination)
          Creates a MessageConsumer for the specified destination.
 MessageConsumer Session.createConsumer(Destination destination, String messageSelector)
          Creates a MessageConsumer for the specified destination, using a message selector.
 MessageConsumer Session.createConsumer(Destination destination, String messageSelector, boolean NoLocal)
          Creates MessageConsumer for the specified destination, using a message selector.
 void MessageProducer.send(Destination destination, Message message)
          Sends a message to a destination for an unidentified message producer.
 void MessageProducer.send(Destination destination, Message message, int deliveryMode, int priority, long timeToLive)
          Sends a message to a destination for an unidentified message producer, specifying delivery mode, priority and time to live.
 void Message.setJMSReplyTo(Destination replyTo)
          Sets the Destination object to which a reply to this message should be sent.
 void Message.setJMSDestination(Destination destination)
          Sets the Destination object for this message.
 ConnectionConsumer Connection.createConnectionConsumer(Destination destination, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
          Creates a connection consumer for this connection (optional operation).
 



Copyright © 2002 JBoss Group, LLC. All Rights Reserved.