617a2936f49661c3dde7b75680fba146022d8122
[yangtools.git] / common / object-cache-guava / src / main / java / org / opendaylight / yangtools / objcache / guava / GuavaObjectCache.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.objcache.guava;
9
10 import org.opendaylight.yangtools.objcache.spi.AbstractObjectCache;
11
12 import com.google.common.base.FinalizableReferenceQueue;
13 import com.google.common.cache.CacheBuilder;
14 import com.google.common.cache.CacheBuilderSpec;
15
16 final class GuavaObjectCache extends AbstractObjectCache {
17     public GuavaObjectCache(final FinalizableReferenceQueue  queue) {
18         super(CacheBuilder.newBuilder().softValues().<SoftKey<?>, Object>build(), queue);
19     }
20
21     public GuavaObjectCache(final FinalizableReferenceQueue  queue, final CacheBuilderSpec spec) {
22         super(CacheBuilder.from(spec).<SoftKey<?>, Object>build(), queue);
23     }
24 }