175.4. headers
header | 상수 | 버전 이후 | 설명 |
---|---|---|---|
|
| 2.13.0 |
사용된 메시지의 본문이 추출된 원래 |
| `JGroupsEndpoint.`HEADER_JGROUPS_SRC | 2.10.0 |
소비자 : consumed 메시지의 |
| `JGroupsEndpoint.`HEADER_JGROUPS_DEST | 2.10.0 |
consumer: |
| `JGroupsEndpoint.`HEADER_JGROUPS_CHANNEL_ADDRESS | 2.13.0 |
끝점과 연결된 채널의 주소( |
# 사용법
경로의 소비자 측에서 jgroups
구성 요소를 사용하면 끝점과 연결된 JChannel
에서 수신한 메시지를 캡처하여 Camel 경로로 전달합니다. JGroups 소비자는 들어오는 메시지를 비동기적으로 처리합니다.
// 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");