| java.lang.Object org.directwebremoting.jms.DwrMessageConsumer
DwrMessageConsumer | public class DwrMessageConsumer implements MessageConsumer(Code) | | A
MessageConsumer for DWR
author: Joe Walker [joe at getahead dot ltd dot uk] |
destination | protected Destination destination(Code) | | The queue or topic that this message is destined for
|
hub | protected Hub hub(Code) | | The Hub for this instance of DWR
|
messageListener | protected MessageListener messageListener(Code) | | What we do with inbound messages
|
messageSelector | protected String messageSelector(Code) | | A way to filter messages based on message properties
|
noLocal | protected boolean noLocal(Code) | | Do we get messages that are sent locally?
|
DwrMessageConsumer | public DwrMessageConsumer(DwrConnection connection, Destination destination) throws JMSException(Code) | | See Also: javax.jms.Session.createConsumer(Destination) |
DwrMessageConsumer | public DwrMessageConsumer(DwrConnection connection, Destination destination, String messageSelector) throws JMSException(Code) | | throws: JMSException - See Also: javax.jms.Session.createConsumer(DestinationString) |
DwrMessageConsumer | public DwrMessageConsumer(DwrConnection connection, Destination destination, String messageSelector, boolean noLocal) throws JMSException(Code) | | See Also: javax.jms.Session.createConsumer(DestinationStringboolean) |
close | public void close() throws JMSException(Code) | | |
getMessageListener | public MessageListener getMessageListener() throws JMSException(Code) | | |
getMessageSelector | public String getMessageSelector() throws JMSException(Code) | | |
receive | public Message receive() throws JMSException(Code) | | |
receive | public Message receive(long timeout) throws JMSException(Code) | | |
receiveNoWait | public Message receiveNoWait() throws JMSException(Code) | | |
setMessageListener | public void setMessageListener(MessageListener messageListener) throws JMSException(Code) | | |
setMessageSelector | public void setMessageSelector(String messageSelector)(Code) | | Parameters: messageSelector - the messageSelector to set |
|
|