문제

From a general Computer Science perspective - when we think of a Queue in a logical sense - we think of being able to 'peek' the first item in the queue.

When I look at the JMS API - it has a MessageListener - which has an OnMessage() method. This feels a little bit like "don't call us- we'll call you."

Does JMS have a concept of a queue peek?

도움이 되었습니까?

해결책

1) If you want to receive messages synchroneously use MessageConsumer.receive

2) Basically, 'peek' in queues means to return, but do not remove, the head of the queue. For this you can use QueueBrowser to look at messages on a queue without removing them.

다른 팁

JMS has a QueueReceiver, which, well, receives messages. You can set a MessageListener to this QueueReceiver to be notified of new messages.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top