131.2. SEDA プロデューサー – to (“hazelcast-seda:foo”)
SEDA プロデューサは操作を提供しません。指定したキューにのみデータを送信します。
Java DSL:
from("direct:foo")
.to("hazelcast-seda:foo");
from("direct:foo")
.to("hazelcast-seda:foo");
Spring DSL :
<route> <from uri="direct:start" /> <to uri="hazelcast-seda:foo" /> </route>
<route>
<from uri="direct:start" />
<to uri="hazelcast-seda:foo" />
</route>