175.5. 사용법
경로의 소비자 측에서 jgroups
구성 요소를 사용하면 엔드포인트와 연결된 JChannel
에서 수신한 메시지를 캡처하고 Camel 경로로 전달합니다. Cryostat 소비자는 들어오는 메시지를 비동기식으로 처리합니다.
// Capture messages from cluster named // 'clusterName' and send them to Camel route. from("jgroups:clusterName").to("seda:queue");
경로의 생산자 측에 jgroups
구성 요소를 사용하면 Camel 교환의 본문을 엔드포인트에서 관리하는 JChannel
인스턴스로 전달합니다.
// Send message to the cluster named 'clusterName' from("direct:start").to("jgroups:clusterName");