I get protobuf objects from activemq queue. I get messages in byte[] from
activemq.
I generate class from *.proto files ?


@Consume(uri="activemq:PostEvent.QUEUE)
public void(byte [] message) {
   PostEventProto.PostEvent postEvent =
PostEventProto.PostEvent.parseFrom(message);
  
   /*some stupid code to transform to json*?
   sendToPostEventTopic(postEventJSON);
   sendToLogQueue(postEventJSON);
}


Can I use <route> instead of code above ? Do I have transform byte[] to
object and than to JSON or can I transform from protobuf to json ?


--
View this message in context: 
http://camel.465427.n5.nabble.com/Proper-way-to-process-route-protobuf-protocolbuffers-tp4589761p4589761.html
Sent from the Camel - Users mailing list archive at Nabble.com.

Reply via email to