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");