5.3. 用途
AMQP コンポーネントは JMS コンポーネントから継承されるため、前者の使用は後者とほぼ同じです。
AMQP コンポーネントの使用
// Consuming from AMQP queue from("amqp:queue:incoming"). to(...); // Sending message to the AMQP topic from(...). to("amqp:topic:notify");
// Consuming from AMQP queue
from("amqp:queue:incoming").
to(...);
// Sending message to the AMQP topic
from(...).
to("amqp:topic:notify");