Uses of Interface
org.apache.commons.messenger.Messenger

Packages that use Messenger
org.apache.commons.messagelet This package provides the mechansim to deploy MessageListener beans in a servlet application server which are intialized and destroyed with a web-application as well as introducing MessageDrivenObjects which are MessageListeners which receive servlet-style lifecycle events and Messagelets which are servlets that process Messages. 
org.apache.commons.messagelet.impl This package contains implementation classes to support both MDO's as well as to be able to dispatch into a Servlet engine to be able to process Messagelets. 
org.apache.commons.messenger The main Messenger interface, a simple facade for working with JMS, together with all the default implementation classes and additional factory classes. 
org.apache.commons.messenger.task A collection of Ant tasks for working with JMS. 
org.apache.commons.messenger.tool A collection of tools for working with Messenger. 
 

Uses of Messenger in org.apache.commons.messagelet
 

Methods in org.apache.commons.messagelet that return Messenger
 Messenger MessengerMDO.getMessenger()
          Provides access to the current Messenger which was used to generate the current Message.
 Messenger ConsumerThread.getMessenger()
          Returns the messenger.
protected  Messenger SubscriptionManager.getMessenger(String name)
           
 Messenger Main.getMessenger(String name)
           
 Messenger BridgeMDO.getOutputMessenger()
          Gets the Messenger used to output messages
 Messenger MessageletResponse.getReplyMessenger()
          Returns the Messenger that should be used for sending replies to this incoming request
 

Methods in org.apache.commons.messagelet with parameters of type Messenger
protected  XACapable XAConsumerThread.getXACapable(Messenger messenger)
           
 void MessengerMDO.setMessenger(Messenger messenger)
           
 void ConsumerThread.setMessenger(Messenger messenger)
          Sets the messenger.
 void BridgeMDO.setOutputMessenger(Messenger outputMessenger)
          Sets the Messenger used to output messages
 

Uses of Messenger in org.apache.commons.messagelet.impl
 

Methods in org.apache.commons.messagelet.impl that return Messenger
 Messenger MessageletResponseImpl.getReplyMessenger()
           
 Messenger HttpMessageletResponseImpl.getReplyMessenger()
           
 

Methods in org.apache.commons.messagelet.impl with parameters of type Messenger
 void MessageServletDispatcher.setMessenger(Messenger messenger)
           
 void MessageletRequestImpl.setMessenger(Messenger messenger)
           
 void MessageHttpServletDispatcher.setMessenger(Messenger messenger)
           
 void HttpMessageletRequestImpl.setMessenger(Messenger messenger)
           
 void MessageletResponseImpl.setReplyMessenger(Messenger messenger)
           
 void HttpMessageletResponseImpl.setReplyMessenger(Messenger messenger)
           
 

Uses of Messenger in org.apache.commons.messenger
 

Classes in org.apache.commons.messenger that implement Messenger
 class DefaultMessenger
          DefaultMessenger is the default implementation of Messenger which uses a ThreadLocal variable to keep the JMS Session that should be used for a given calling thread.
 class MessengerSupport
          MessengerSupport is an abstract base class which implements most of the functionality of Messenger.
 class SimpleMessenger
          SimpleMessenger is an implementation of Messenger which uses a single JMS Session for sending to keep the JMS Session that should be used for a given calling thread.
 class XAMessenger
          XAMessenger is a default implementation of Messenger which can also support XA transactions by enlisting and delisting XAResources.
 

Methods in org.apache.commons.messenger that return Messenger
static Messenger MessengerManager.get(String name)
          Uses the default configuration mechanism this method will return the Messenger for the given name.
 Messenger MessengerServlet.getMessenger()
          Getter for property messenger.
 Messenger MessengerListenerSupport.getMessenger()
          Returns the Messenger that this MessageListener is associated with making it easy to send replies or other messages using the same Messenger instance that this object is listening to.
 Messenger MessengerManager.getMessenger(String name)
          Returns the messenger for the given name
 

Methods in org.apache.commons.messenger with parameters of type Messenger
 void MessengerManager.addMessenger(Messenger messenger)
           
 void MessengerManager.removeMessenger(Messenger messenger)
           
 void MessengerServlet.setMessenger(Messenger messenger)
          Setter for property messenger.
 void MessengerListenerSupport.setMessenger(Messenger messenger)
          Called whenever this MessageListener is added to a Messenger via the addListener() method to associate this MessageListener with a Messenger instance..
 void MessengerListener.setMessenger(Messenger messager)
          Called whenever this MessageListener is added to a Messenger via the addListener() method to associate this MessageListener with a Messenger instance..
 

Constructors in org.apache.commons.messenger with parameters of type Messenger
XACapableAdapter(Messenger messenger)
           
 

Uses of Messenger in org.apache.commons.messenger.task
 

Methods in org.apache.commons.messenger.task that return Messenger
 Messenger ProducerTask.getMessenger()
           
 Messenger ConsumerTask.getMessenger()
           
 

Methods in org.apache.commons.messenger.task with parameters of type Messenger
protected  void ProducerTask.sendFile(File file, Messenger messenger, javax.jms.Destination destination)
          Sends the contents of the given file to the given Destination using the given Messenger instance
 void ProducerTask.setMessenger(Messenger messenger)
          Sets the Messenger to be used
 void ConsumerTask.setMessenger(Messenger messenger)
          Sets the Messenger to be used
 

Uses of Messenger in org.apache.commons.messenger.tool
 

Fields in org.apache.commons.messenger.tool declared as Messenger
protected  Messenger Producer.messenger
           
 



Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.