139.3. SEDA 생산자 - To("hazelcast-seda:foo")

SEDA 생산자는 작업을 제공하지 않습니다. 지정된 큐에 데이터만 보냅니다.

Java DSL:

from("direct:foo")
.to("hazelcast-seda:foo");

Spring DSL:

<route>
   <from uri="direct:start" />
   <to uri="hazelcast-seda:foo" />
</route>