Example usage for com.google.common.cache LoadingCache apply

List of usage examples for com.google.common.cache LoadingCache apply

Introduction

In this page you can find the example usage for com.google.common.cache LoadingCache apply.

Prototype

@Deprecated
@Override
V apply(K key);

Source Link

Usage

From source file:rickbw.incubator.cache.LoadingMultiCache.java

@Override
@Deprecated//from   w w  w  .j a v  a  2s . c  o m
public V apply(final K key) {
    final LoadingCache<K, V> cache = getCacheNonNull(key);
    return cache.apply(key);
}