
com.frostwire.jlibtorrent.LruCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlibtorrent Show documentation
Show all versions of jlibtorrent Show documentation
A swig Java interface for libtorrent by the makers of FrostWire.
package com.frostwire.jlibtorrent;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* @author gubatron
* @author aldenml
*/
final class LruCache extends LinkedHashMap {
private final int maxSize;
public LruCache(int maxSize) {
this.maxSize = maxSize;
}
@Override
protected boolean removeEldestEntry(Map.Entry eldest) {
return size() > maxSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy