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

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

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

Node.createJoinRequest介绍

暂无

代码示例

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

  1. private Address findMasterWithMulticast() {
  2. try {
  3. if (logger.isFineEnabled()) {
  4. logger.fine("Searching for master node. Max tries: " + maxTryCount.get());
  5. }
  6. JoinRequest joinRequest = node.createJoinRequest(false);
  7. while (node.isRunning() && currentTryCount.incrementAndGet() <= maxTryCount.get()) {
  8. joinRequest.setTryCount(currentTryCount.get());
  9. node.multicastService.send(joinRequest);
  10. Address masterAddress = clusterService.getMasterAddress();
  11. if (masterAddress == null) {
  12. //noinspection BusyWait
  13. Thread.sleep(getPublishInterval());
  14. } else {
  15. return masterAddress;
  16. }
  17. }
  18. } catch (final Exception e) {
  19. if (logger != null) {
  20. logger.warning(e);
  21. }
  22. } finally {
  23. currentTryCount.set(0);
  24. }
  25. return null;
  26. }

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

  1. private Address findMasterWithMulticast() {
  2. try {
  3. if (logger.isFineEnabled()) {
  4. logger.fine("Searching for master node. Max tries: " + maxTryCount.get());
  5. }
  6. JoinRequest joinRequest = node.createJoinRequest(false);
  7. while (node.isRunning() && currentTryCount.incrementAndGet() <= maxTryCount.get()) {
  8. joinRequest.setTryCount(currentTryCount.get());
  9. node.multicastService.send(joinRequest);
  10. Address masterAddress = clusterService.getMasterAddress();
  11. if (masterAddress == null) {
  12. //noinspection BusyWait
  13. Thread.sleep(getPublishInterval());
  14. } else {
  15. return masterAddress;
  16. }
  17. }
  18. } catch (final Exception e) {
  19. if (logger != null) {
  20. logger.warning(e);
  21. }
  22. } finally {
  23. currentTryCount.set(0);
  24. }
  25. return null;
  26. }

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

  1. /**
  2. * Send join request to {@code toAddress}.
  3. *
  4. * @param toAddress the currently known master address.
  5. * @param withCredentials use cluster credentials
  6. * @return {@code true} if join request was sent successfully, otherwise {@code false}.
  7. */
  8. public boolean sendJoinRequest(Address toAddress, boolean withCredentials) {
  9. if (toAddress == null) {
  10. toAddress = clusterService.getMasterAddress();
  11. }
  12. JoinRequestOp joinRequest = new JoinRequestOp(node.createJoinRequest(withCredentials));
  13. return nodeEngine.getOperationService().send(joinRequest, toAddress);
  14. }

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

  1. /**
  2. * Send join request to {@code toAddress}.
  3. *
  4. * @param toAddress the currently known master address.
  5. * @param withCredentials use cluster credentials
  6. * @return {@code true} if join request was sent successfully, otherwise {@code false}.
  7. */
  8. public boolean sendJoinRequest(Address toAddress, boolean withCredentials) {
  9. if (toAddress == null) {
  10. toAddress = clusterService.getMasterAddress();
  11. }
  12. JoinRequestOp joinRequest = new JoinRequestOp(node.createJoinRequest(withCredentials));
  13. return nodeEngine.getOperationService().send(joinRequest, toAddress);
  14. }

相关文章