All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oracle.coherence.hibernate.cache.region.CoherenceQueryResultsRegion Maven / Gradle / Ivy

Go to download

A Coherence-based implementation of the second-level cache SPI introduced in Hibernate 3.3.

There is a newer version: 2.3.5
Show newest version
/*
 * Copyright (c) 2013, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * https://oss.oracle.com/licenses/upl.
 */
package com.oracle.coherence.hibernate.cache.region;

import com.tangosol.net.NamedCache;
import org.hibernate.cache.spi.QueryResultsRegion;

import java.util.Properties;

/**
 * A CoherenceQueryResultsRegion is a CoherenceGeneralDataRegion intended to cache Hibernate query results.
 *
 * @author Randy Stafford
 * @author Gunnar Hillert
 */
public class CoherenceQueryResultsRegion
extends CoherenceGeneralDataRegion
implements QueryResultsRegion
{

    // ---- Constructors

    /**
     * Complete constructor.
     *
     * @param namedCache the NamedCache implementing this CoherenceQueryResultsRegion
     * @param properties configuration properties for this CoherenceQueryResultsRegion
     */
    public CoherenceQueryResultsRegion(NamedCache namedCache, Properties properties)
    {
        super(namedCache, properties);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy