All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tron.p2p.discover.NodeManager Maven / Gradle / Ivy

The newest version!
package org.tron.p2p.discover;

import java.util.List;
import org.tron.p2p.discover.protocol.kad.KadService;
import org.tron.p2p.discover.socket.DiscoverServer;

public class NodeManager {

  private static DiscoverService discoverService;
  private static DiscoverServer discoverServer;

  public static void init() {
    discoverServer = new DiscoverServer();
    discoverService = new KadService();
    discoverService.init();
    discoverServer.init(discoverService);
  }

  public static void close() {
    if (discoverService != null) {
      discoverService.close();
    }
    if (discoverServer != null) {
      discoverServer.close();
    }
  }

  public static List getConnectableNodes() {
    return discoverService.getConnectableNodes();
  }

  public static List getTableNodes() {
    return discoverService.getTableNodes();
  }

  public static List getAllNodes() {
    return discoverService.getAllNodes();
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy