Package org.ardverk.dht.config

Examples of org.ardverk.dht.config.BootstrapConfig


  }
 
  public DHTFuture<BootstrapEntity> bootstrap(
      SocketAddress address, BootstrapConfig config) {
   
    BootstrapConfig cfg = configProvider.get(config);
   
    DHTFuture<PingEntity> pingFuture = pingManager.ping(
        address, cfg.getPingConfig());
   
    return bootstrap(pingFuture, cfg);
  }
View Full Code Here


        throws InterruptedException, ExecutionException {
   
    List<DHTFuture<BootstrapEntity>> futures
      = new ArrayList<DHTFuture<BootstrapEntity>>();
   
    BootstrapConfig config = new BootstrapConfig();
    config.setExecutorKey(ExecutorKey.BACKEND);
   
    for (int i = 0; i < length; i++) {
      DHTFuture<BootstrapEntity> future
        = dhts.get(offset+i).bootstrap(from, config);
      futures.add(future);
View Full Code Here

TOP

Related Classes of org.ardverk.dht.config.BootstrapConfig

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.