我在GridGain 6.0.3中找不到GridRichNode,有没有替代这个类?
答案 0 :(得分:1)
在GridGain 6.0.3中删除了GridRichNode,以删除GridNode和GridRichNode API之间存在的重复性。
要获得与GridRichNode相同的功能,您现在需要在特定节点上进行投影,如下所示:
GridNode node = ...; // Get a single node.
GridProjection nodePrj = grid.forNode(node);
// Send a message to specific node.
nodePrj.send(...)