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?
|
|
|
You will get an exception, as a Session must be in either asynchronous or synchronous modes. From 4.4.6 of the JMS specification
|
|||
|
|
|
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. |
|||||||
|