Java com.google.common.cache CacheLoader fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.cache CacheLoader fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.cache CacheLoader.

The text is from its open source code.

Subclass

com.google.common.cache.CacheLoader has subclasses.
Click this link to see all its subclasses.

Constructor

CacheLoader()
Constructor for use by subclasses.

Method

CacheLoaderasyncReloading(final CacheLoader loader, final Executor executor)
Returns a CacheLoader which wraps loader , executing calls to CacheLoader#reload using executor .
CacheLoaderfrom(Function function)
Returns a cache loader based on an existing function instance.
CacheLoaderfrom(Supplier supplier)
Returns a cache loader based on an existing supplier instance.
ClassgetClass()
Returns the runtime class of this Object .
Vload(K key)
Computes or retrieves the value corresponding to key .