Package org.hibernate.util

Examples of org.hibernate.util.LRUMap


    strongRefCache.clear();
    softRefCache.clear();
  }

  private void init() {
    this.strongRefCache = new LRUMap( strongRefCount );
    this.softRefCache = new LRUMap( softRefCount );
    this.referenceQueue = new ReferenceQueue();
  }
View Full Code Here


    strongRefCache.clear();
    softRefCache.clear();
  }

  private void init() {
    this.strongRefCache = new LRUMap( strongRefCount );
    this.softRefCache = new LRUMap( softRefCount );
    this.referenceQueue = new ReferenceQueue();
  }
View Full Code Here

TOP

Related Classes of org.hibernate.util.LRUMap

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.