Package org.w3c.util

Examples of org.w3c.util.AsyncLRUList


  this.maxEntries = maxEntries ;
  this.defaultMaxAge = defaultMaxAge ;

  this.size = 0 ;

  lruList = new AsyncLRUList() ;
  entries = new Hashtable(20) ;
    }
View Full Code Here


  // Initialize the instance variables:
  this.server_name    = server_name;
  this.storedir       = storedir;
  this.entries        = new Hashtable() ;
  this.sweeper        = new StoreManagerSweeper(this) ;
  this.lru            = new AsyncLRUList();
  this.maxLoadedStore = (max_loaded_store < 10) ? 10 : max_loaded_store;
  this.storeSizeLimit = (store_size_limit < 100) ? -1 : store_size_limit;
  this.loadedStore = 0;
 
  try {
View Full Code Here

TOP

Related Classes of org.w3c.util.AsyncLRUList

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.