113.3. Unmarshal
この例では、MY_QUEUE という ActiveMQ キューから gzipped されたペイロードを元の形式にアンマーシャリングして UnGZippedMessageProcessor
に転送し、処理します。
from("activemq:queue:MY_QUEUE").unmarshal().gzip().process(new UnGZippedMessageProcessor());
from("activemq:queue:MY_QUEUE").unmarshal().gzip().process(new UnGZippedMessageProcessor());