Is there any option in hornetq to set message consumer delay. if so kindly help with an example. Our Req: We need MDB to read message with a constant 2 min delay.

link|improve this question

18% accept rate
feedback

2 Answers

I don't think this is the usual use-case for MDBs. Are you sure you need an MBD? Have you thought about Topic queues?

Or can you describe the business reasons for requiring a delay?

link|improve this answer
we need it for EDI processing, when an EDI request comes in, the messages related to that edi should be processed and sent after 2 min. – vairam Dec 29 '11 at 5:05
feedback

OK - then I think you should just get the message, use a

http://docs.oracle.com/javase/7/docs/api/java/util/concurrent/DelayQueue.html

and use that with a scheduler service like Quartz or the new timer-stuff in EJB3.1.

Best, Anders

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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