RE: transforming a message into a persistent message?

2021-02-19 Thread Dondorp, Erwin
rijdag 19 februari 2021 15:09 Aan: users@activemq.apache.org Onderwerp: Re: transforming a message into a persistent message? EXTERNAL SENDER: Do not click any links or open any attachments unless you trust the sender and know the content is safe. EXPÉDITEUR EXTERNE:Ne cliquez sur aucun

Re: transforming a message into a persistent message?

2021-02-19 Thread Domenico Francesco Bruscino
Hi Erwin, AFAIK there isn't any predefined method to make a message persistent. You could implement an interceptor[1]. You can find an interceptor example at https://github.com/apache/activemq-artemis/tree/2.17.0/examples/features/standard/interceptor . [1]

transforming a message into a persistent message?

2021-02-18 Thread Dondorp, Erwin
Hello, Using Artemis, I have messages that are entering the broker as non-persistent messages. But, I need to make the messages persistent as soon as possible. So preferably within the broker. Is there any predefined method to do that? (I could not find one...) Or is this a job for a custom