Uses of Interface
org.cache2k.operation.TimeReference
-
Packages that use TimeReference Package Description org.cache2k Main package for cache2k API containing functions to build and access a cache.org.cache2k.config The cache configuration as a Java bean and support types.org.cache2k.operation Operational aspects of a cache, like accessing statistics, basic information, change runtime parameters and customizations that augment general behavior. -
-
Uses of TimeReference in org.cache2k
Methods in org.cache2k with parameters of type TimeReference Modifier and Type Method Description Cache2kBuilder<K,V>
Cache2kBuilder. timeReference(TimeReference v)
Use a different time reference. -
Uses of TimeReference in org.cache2k.config
Methods in org.cache2k.config that return TimeReference Modifier and Type Method Description TimeReference
CacheBuildContext. getTimeReference()
Time reference to use for this cache instance.Methods in org.cache2k.config that return types with arguments of type TimeReference Modifier and Type Method Description @Nullable CustomizationSupplier<? extends TimeReference>
Cache2kConfig. getTimeReference()
Method parameters in org.cache2k.config with type arguments of type TimeReference Modifier and Type Method Description void
Cache2kConfig. setTimeReference(CustomizationSupplier<? extends TimeReference> timeReference)
-
Uses of TimeReference in org.cache2k.operation
Classes in org.cache2k.operation that implement TimeReference Modifier and Type Class Description static class
TimeReference.Default
static class
TimeReference.Milliseconds
Fields in org.cache2k.operation declared as TimeReference Modifier and Type Field Description static TimeReference
TimeReference. DEFAULT
Default implementation usingSystem.currentTimeMillis()
as time reference.Methods in org.cache2k.operation that return TimeReference Modifier and Type Method Description TimeReference
CacheInfo. getTimeReference()
Effective time reference
-