Added setMaxSize().

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1028 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2003-01-17 02:01:05 +00:00
parent 0c972d8bf9
commit fff6b8d68e
@@ -1,5 +1,5 @@
//
// $Id: LRUHashMap.java,v 1.2 2003/01/17 00:40:45 mdb Exp $
// $Id: LRUHashMap.java,v 1.3 2003/01/17 02:01:05 mdb Exp $
package com.samskivert.util;
@@ -53,6 +53,23 @@ public class LRUHashMap implements Map
_sizer = (sizer == null) ? _unitSizer : sizer;
}
/**
* Updates the cache's maximum size, flushing elements from the cache
* if necessary.
*/
public void setMaxSize (int maxSize)
{
// configure our new maximum size
_maxSize = maxSize;
// boot enough people to get below said size
while (_size > _maxSize && size() > 1) {
Object key = keySet().iterator().next();
remove(key);
// System.out.println("Flushed " + key + ": " + _size);
}
}
/**
* Turn performance tracking on/off.
*/