307.5. コンシューマーの使用
307.5.1. InOnly コンシューマー - (デフォルト)
リンクのコピーリンクがクリップボードにコピーされました!
InOnly consumer は、SJMS consumer エンドポイントのデフォルトの Exchange 動作です。
from("sjms:queue:bar")
    .to("mock:result");
from("sjms:queue:bar")
    .to("mock:result");307.5.2. InOut コンシューマー
リンクのコピーリンクがクリップボードにコピーされました!
						InOut 動作を有効にするには、exchangePattern 属性を URI に追加します。
					
from("sjms:queue:in.out.test?exchangePattern=InOut")
    .transform(constant("Bye Camel"));
from("sjms:queue:in.out.test?exchangePattern=InOut")
    .transform(constant("Bye Camel"));