175.5. 使用方法
在路由的消费者端使用 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");