//log.error(ME, "getAll() DEBUG ONLY: numSwapped=" + numSwapped() + " transient=" + this.transientStore.getNumOfEntries() + " persistentStore=" + this.persistentStore.getNumOfEntries());
java.util.Map map = new java.util.TreeMap(); // To suppress same entry twice and to be sorted (sorted is not yet specified to be necessary)
I_MapEntry[] ramEntries = null;
if (entryFilter != null) {
ramEntries = this.transientStore.getAll(new I_EntryFilter() {
public I_Entry intercept(I_Entry entry, I_Storage storage) {
if (entry.isPersistent())
return null; // take the one from persistent store
return entryFilter.intercept(entry, storage);
}