com.hazelcast.instance.Node.reset()方法的使用及代码示例

x33g5p2x  于2022-01-25 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(266)

本文整理了Java中com.hazelcast.instance.Node.reset()方法的一些代码示例,展示了Node.reset()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Node.reset()方法的具体详情如下:
包路径:com.hazelcast.instance.Node
类名称:Node
方法名:reset

Node.reset介绍

[英]Resets the internal cluster-state of the Node to be able to make it ready to join a new cluster. After this method is called, a new join process can be triggered by calling #join().

This method is called during merge process after a split-brain is detected.
[中]重置节点的内部群集状态,使其能够准备加入新群集。调用此方法后,可以通过调用#join()来触发新的连接进程。
在检测到分裂的大脑后,在合并过程中调用此方法。

代码示例

代码示例来源:origin: com.hazelcast/hazelcast-all

  1. private void resetState() {
  2. // reset node and membership state from now on this node won't be joined and won't have a master address
  3. node.reset();
  4. node.getClusterService().reset();
  5. // stop the connection-manager:
  6. // - all socket connections will be closed
  7. // - connection listening thread will stop
  8. // - no new connection will be established
  9. node.connectionManager.stop();
  10. // clear waiting operations in queue and notify invocations to retry
  11. node.nodeEngine.reset();
  12. }

代码示例来源:origin: hazelcast/hazelcast-jet

  1. private void resetState() {
  2. // reset node and membership state from now on this node won't be joined and won't have a master address
  3. node.reset();
  4. node.getClusterService().reset();
  5. node.getNodeExtension().getInternalHotRestartService().resetService(true);
  6. // stop the connection-manager:
  7. // - all socket connections will be closed
  8. // - connection listening thread will stop
  9. // - no new connection will be established
  10. node.connectionManager.stop();
  11. // clear waiting operations in queue and notify invocations to retry
  12. node.nodeEngine.reset();
  13. }

相关文章