Package org.ardverk.dht

Examples of org.ardverk.dht.Factory


public class NodeResponseHandlerTest {
 
  private static List<DHT> createDHTs(int count, int port) throws IOException {
   
    Factory factory = Factory.sha1();
   
    List<DHT> dhts = new ArrayList<DHT>(count);
   
    boolean success = false;
    try {
      for (int i = 0; i < count; i++) {
        int prt = port+i;
       
        DHT dht = factory.newDHT(prt);
       
        dht.bind(new DatagramTransport(
            new BencodeMessageCodec(), prt));
        dhts.add(dht);
      }
View Full Code Here

TOP

Related Classes of org.ardverk.dht.Factory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.