Package org.jdbi.v3.core.cache.internal
Class DefaultJdbiCacheBuilder
java.lang.Object
org.jdbi.v3.core.cache.internal.DefaultJdbiCacheBuilder
- All Implemented Interfaces:
JdbiCacheBuilder
Builder for the default Jdbi cache implementation.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<K,V> JdbiCache<K, V> build()Creates an cache instance from the values in the builder.static DefaultJdbiCacheBuilderbuilder()Returns a new Builder.<K,V> JdbiCache<K, V> buildWithLoader(JdbiCacheLoader<K, V> loader) Creates an cache instance from the values in the builder and a supplied cache loader.(package private) intmaxSize(int maxSize) Sets an upper boundary to the cache size.
-
Field Details
-
maxSize
private int maxSize
-
-
Constructor Details
-
DefaultJdbiCacheBuilder
private DefaultJdbiCacheBuilder()
-
-
Method Details
-
builder
Returns a new Builder.- Returns:
- A new builder instance for a
DefaultJdbiCacheinstance.
-
build
Description copied from interface:JdbiCacheBuilderCreates an cache instance from the values in the builder.- Specified by:
buildin interfaceJdbiCacheBuilder- Returns:
- A cache instance.
-
buildWithLoader
Description copied from interface:JdbiCacheBuilderCreates an cache instance from the values in the builder and a supplied cache loader.- Specified by:
buildWithLoaderin interfaceJdbiCacheBuilder- Parameters:
loader- AJdbiCacheLoaderinstance that is used to create a new value if no value is currently stored in the cache.
-
maxSize
Description copied from interface:JdbiCacheBuilderSets an upper boundary to the cache size.- Specified by:
maxSizein interfaceJdbiCacheBuilder- Parameters:
maxSize- Sets the maximum size of the cache. If the value is zero or negative, the cache is unbounded.- Returns:
- The instance of the builder itself.
-
getMaxSize
int getMaxSize()
-