Package com.aelitis.azureus.core.lws

Examples of com.aelitis.azureus.core.lws.LightWeightSeed


  }
 
  protected void
  destroy()
  {
    LightWeightSeed l;
   
    synchronized( this ){
     
      destroyed  = true;
     
      l = lws;
    }
   
    if ( l != null ){
     
      l.remove();
    }
  }
View Full Code Here


    final downloadListener  listener )
  {
    try{
        // testing purposes, see if local exists
     
      LightWeightSeed lws = LightWeightSeedManager.getSingleton().get( new HashWrapper( torrent.getHash()));
 
      if ( lws != null ){
       
        log( "Light weight seed found" );
       
        listener.complete( lws.getDataLocation());
       
      }else{
        String  sid = ByteFormatter.encodeString( subs_id );
       
        File  dir = getSubsDir();
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.core.lws.LightWeightSeed

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.