I'm new to JMS and HornetQ.
I'm wondering if there is a way to implement Message Translator Pattern using HornetQ to split data from a message in a set of smaller data and send them. I explored Bridge and Divert solutions but I can't get how to do it using org.hornetq.core.server.cluster.Transformer
and org.hornetq.core.server.ServerMessage
. Where can I find some docs about it? Am I looking in the right direction?
HornetQ message splitter
253 Views Asked by Francesco At
1
In short no(I've no Idea on camel). You cannot modify the jms body once sent until its consumed by a client(body is immutable). However you can change message headers and message properties. The
org.hornetq.core.server.cluster.Transformer
interface is used for modifying the headers/properties. Hence you are left with two options.