How do I delay JMS Message sending?
问题 How do I delay JMS Message sending or proceed uncertain time? I am using Weblogic, as you know, after JMS sending, the receiver will process the message asynchronously, but, at this time or sometimes the external resource are not ready for the receiver, therefore, I want to have some check logic to delay send or process the message. I guess for example: I put the message into pending queue then frequently check the resource availability, once it is then send or proceed the message? Do