Hello,
In the application I'm working on, I have a lengthy process (DNA analysis). Users can send requests, and I think about the order of requests in the JMS queue, and then process the requests in the queue accordingly. The result is then emailed to a specific user.
However, the administrator must be able to change the order / priority of requests. I am wondering if it is possible to change the order of the JMS queue. What technology can I use? Can I go with ActiveMQ for this?
PS: This DNA analysis process is a hungry resource process accessed through JNI. Only one (or limited) process should start immediately.
source
share