Hello,
I have a mulithreaded application. One thread is responsible for reading messages from a queue. Several other threads are involved in message processing. The final thread puts reply messages on a second queue.
How can I avoid losing messages within my application when it suddenly terminates? Is there a way that messages can be left on the first queue until the corresponding reply message has been put on the second?
Thanks
I have a mulithreaded application. One thread is responsible for reading messages from a queue. Several other threads are involved in message processing. The final thread puts reply messages on a second queue.
How can I avoid losing messages within my application when it suddenly terminates? Is there a way that messages can be left on the first queue until the corresponding reply message has been put on the second?
Thanks