173.3. Headers
| 标头 | 常数 | 自版本开始 | 描述 | 
|---|---|---|---|
|   
								  |   
								  |   2.13.0  |   
								原始   | 
|   
								  |   `JGroupsEndpoint.`HEADER_JGROUPS_SRC  |   2.10.0  |   
								consumer :   | 
|   
								  |   `JGroupsEndpoint.`HEADER_JGROUPS_DEST  |   2.10.0  |   
								consumer :   | 
|   
								  |   `JGroupsEndpoint.`HEADER_JGROUPS_CHANNEL_ADDRESS  |   2.13.0  |   
								与端点关联的频道的地址(  | 
# usage
				路由使用者端使用 jgroups 组件将捕获与端点关联的 JChannel 接收的消息,并将其转发到 Camel 路由。JGroups 消费者 异步 处理传入的消息。
			
// Capture messages from cluster named
// 'clusterName' and send them to Camel route.
from("jgroups:clusterName").to("seda:queue");
// 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");
// Send message to the cluster named 'clusterName'
from("direct:start").to("jgroups:clusterName");