Package org.ardverk.dht.utils

Examples of org.ardverk.dht.utils.ContactKey


  private synchronized DHTFuture<PingEntity> ping(ContactEntry entry) {
    Contact contact = entry.getContact();
   
    // Make sure we're not pinging the same host in parallel.
    // It is an unlikely but possible case...
    final ContactKey pingKey = new ContactKey(contact);
    DHTFuture<PingEntity> future
      = pingFutures.get(pingKey);
   
    if (future == null) {
      PingConfig pingConfig = config.getPingConfig();
View Full Code Here

TOP

Related Classes of org.ardverk.dht.utils.ContactKey

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.