Package com.aelitis.azureus.plugins.dht

Examples of com.aelitis.azureus.plugins.dht.DHTPluginContact


 
    throws DistributedDatabaseException
  {
    throwIfNotAvailable();
 
    DHTPluginContact  contact = getDHT().importContact( address );
   
    if ( contact == null ){
     
      throw( new DistributedDatabaseException( "import of '" + address + "' failed" ));
    }
View Full Code Here


 
    throws DistributedDatabaseException
  {
    throwIfNotAvailable();
 
    DHTPluginContact  contact = getDHT().importContact( address, version );
   
    if ( contact == null ){
     
      throw( new DistributedDatabaseException( "import of '" + address + "' failed" ));
    }
View Full Code Here

     
      return( torrent_transfer.read( contact, listener, type, key, timeout ));
     
    }else{
     
      DHTPluginContact plugin_contact = contact.getContact();
     
      byte[]  data = plugin_contact.read(
                new DHTPluginProgressListener()
                {
                  public void
                  reportSize(
                    long  size )
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.plugins.dht.DHTPluginContact

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.