Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright (c) 2000, 2020, Oracle and/or its affiliates.
*
* Licensed under the Universal Permissive License v 1.0 as shown at
* http://oss.oracle.com/licenses/upl.
*/
package com.tangosol.coherence.config.scheme;
import com.tangosol.coherence.config.builder.BuilderCustomization;
import com.tangosol.coherence.config.builder.MapBuilder.Dependencies;
import com.tangosol.coherence.config.builder.NamedCacheBuilder;
import com.tangosol.coherence.config.builder.ParameterizedBuilder;
import com.tangosol.config.annotation.Injectable;
import com.tangosol.config.expression.ParameterResolver;
import com.tangosol.net.CacheService;
import com.tangosol.net.NamedCache;
import com.tangosol.net.Service;
import com.tangosol.util.ExternalizableHelper;
import com.tangosol.util.NullImplementation;
/**
* The {@link CacheStoreScheme} class is responsible for building a fully
* configured instance of a CacheStore, CacheLoader or remote NamedCache.
* The remote cache is only used within a ReadWriteBackingMap scheme. Also,
* even though bundling is specified in the CacheStore scheme, it is not used
* here. Rather, it is used by {@link ReadWriteBackingMapScheme},
* which contains a {@link CacheStoreScheme}.
*
* @author pfm 2011.11.30
* @since Coherence 12.1.2
*/
public class CacheStoreScheme
extends AbstractScheme
implements BuilderCustomization