org.babyfish.jimmer.sql.cache.chain.LoadingBinder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-sql Show documentation
Show all versions of jimmer-sql Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.sql.cache.chain;
import java.util.*;
public interface LoadingBinder extends Binder {
void initialize(CacheChain chain);
Map getAll(Collection keys);
interface Parameterized extends Binder {
void initialize(CacheChain.Parameterized chain);
default Map getAll(Collection keys) {
return getAll(keys, Collections.emptySortedMap());
}
Map getAll(
Collection keys,
SortedMap parameterMap
);
}
}