All Downloads are FREE. Search and download functionalities are using the official Maven repository.

xtdb.util.LRU Maven / Gradle / Ivy

There is a newer version: 2.0.0-beta4
Show newest version
package xtdb.util;

import java.util.LinkedHashMap;
import java.util.Map.Entry;
import java.util.function.BiPredicate;

public class LRU extends LinkedHashMap {
    private static final long serialVersionUID = -4055957566679424062L;

    private final BiPredicate, Entry> removeEldestEntryFn;

    public LRU(int size, BiPredicate, Entry> removeEldestEntryFn) {
        super(size, 0.75f, true);
        this.removeEldestEntryFn = removeEldestEntryFn;
    }

    public boolean removeEldestEntry(Entry entry) {
        return this.removeEldestEntryFn.test(this, entry);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy