com.chutneytesting.tools.Guavas Maven / Gradle / Ivy
package com.chutneytesting.tools;
import com.google.common.cache.CacheLoader;
import java.util.function.Function;
/**
* Utilities around Guava's.
*/
public class Guavas {
private Guavas() {}
/**
* @return a {@link CacheLoader} using the given {@link Function} to provide values
*/
public static CacheLoader cacheLoader(Function loader) {
return new FunctionCacheLoader<>(loader);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy