Package com.aelitis.azureus.core.diskmanager.cache

Examples of com.aelitis.azureus.core.diskmanager.cache.CacheFileManagerStats


                System.out.print("[" + DirectByteBuffer.AL_DESCS[key.intValue()]+ " x " +count.value+ "] ");
          }
         
          if ( cm != null ){
           
            CacheFileManagerStats stats = cm.getStats();
           
            System.out.print( " - Cache: " );
             
           
          System.out.print( "sz=" + stats.getSize());
          System.out.print( ",us=" + stats.getUsedSize());
          System.out.print( ",cw=" + stats.getBytesWrittenToCache());
          System.out.print( ",cr=" + stats.getBytesReadFromCache());
          System.out.print( ",fw=" + stats.getBytesWrittenToFile());
          System.out.print( ",fr=" + stats.getBytesReadFromFile());
         
          }
         
          System.out.println();
       
View Full Code Here

TOP

Related Classes of com.aelitis.azureus.core.diskmanager.cache.CacheFileManagerStats

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.