eu.semaine.jms.receiver
Class BMLReceiver

java.lang.Object
  extended by eu.semaine.jms.IOBase
      extended by eu.semaine.jms.receiver.Receiver
          extended by eu.semaine.jms.receiver.XMLReceiver
              extended by eu.semaine.jms.receiver.BMLReceiver
All Implemented Interfaces:
javax.jms.MessageListener

public class BMLReceiver
extends XMLReceiver


Nested Class Summary
 
Nested classes/interfaces inherited from class eu.semaine.jms.IOBase
IOBase.Event
 
Field Summary
 
Fields inherited from class eu.semaine.jms.receiver.Receiver
consumer, listener, log, message
 
Fields inherited from class eu.semaine.jms.IOBase
connection, isConnectionStarted, jmsPassword, jmsUrl, jmsUser, session, topic
 
Constructor Summary
BMLReceiver(java.lang.String topicName)
          Create a receiver that will listen for all messages in the given Topic.
BMLReceiver(java.lang.String topicName, java.lang.String messageSelector)
          Create a receiver that will listen only to the messages in the given Topic that will pass the given messageSelector.
 
Method Summary
 
Methods inherited from class eu.semaine.jms.receiver.XMLReceiver
createSEMAINEMessage
 
Methods inherited from class eu.semaine.jms.receiver.Receiver
getMessage, getMessageListener, getMessageSelector, main, notPickedUp, onMessage, receive, receive, receiveNoWait, setMessageListener
 
Methods inherited from class eu.semaine.jms.IOBase
getConnection, getJMSUrl, getSession, getTopic, getTopicName, startConnection
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

BMLReceiver

public BMLReceiver(java.lang.String topicName)
            throws javax.jms.JMSException
Create a receiver that will listen for all messages in the given Topic.

Parameters:
topic - the name of the JMS Topic to listen to.
Throws:
javax.jms.JMSException

BMLReceiver

public BMLReceiver(java.lang.String topicName,
                   java.lang.String messageSelector)
            throws javax.jms.JMSException
Create a receiver that will listen only to the messages in the given Topic that will pass the given messageSelector.

Parameters:
topicName - the name of the JMS Topic to listen to.
messageSelector - a message selector expression, see e.g. http://java.sun.com/javaee/5/docs/api/javax/jms/Message.html for the detailed description.
Throws:
javax.jms.JMSException