Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I set a MessageListener object for a MessageConsumer, and then call receive() on that consumer, what will happen? Will the provider give the message to receive(), or will it continue to be blocked while the message is processed by the MessageListener object?

share|improve this question

2 Answers

up vote 3 down vote accepted

You will get an exception, as a Session must be in either asynchronous or synchronous modes. From 4.4.6 of the JMS specification

One consequence of the session’s single-thread-of-control restriction is that a session with message listeners cannot also be used to synchronously receive messages. Either the session is dedicated to the thread of control used for delivery to message listeners or it is dedicated to a thread of control initiated by client code. It is erroneous to attempt to combine both in the same session.

share|improve this answer

I'm having a hard time imagining a situation where doing this makes sense.

Suppose that your receive() did not have precedence. Then presumably there's no effect.

Suppose that your receive() did have precedence. What would you expect to happen after your receive gets a message? Presumably until you call receive again the Message Consumer would be taking the messages? In that case your system's behaviour is effectively one huge race condition, the exact arrival times of messages causes different behaviours.

You must be able to do better than this. Have an "adaptive" MessageConsumer whose behaviour you can control perhaps.

share|improve this answer
djna: Thanks for the answer. I'm not necessarily imagining a situation where this is applicable. It's more to do with how some provider would handle this situation. I think it's possible to inadvertently call 'receive()' down a src file somewhere even if that consumer has been given a MessageLsitener object earlier. In such a case, how would the provider react? – shrini1000 Aug 4 '11 at 9:55
2  
The provider will throw a JMSException, e.g. WebSphere MQ will throw "JMSCC0033: A synchronous method call is not permitted when a session is being used asynchronously" when the receive() call is made – strmqm Aug 4 '11 at 10:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.