com.oracle.coherence.hibernate.cache.region.CoherenceQueryResultsRegion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of coherence-hibernate-cache-52 Show documentation
Show all versions of coherence-hibernate-cache-52 Show documentation
A Coherence-based implementation of the second-level cache SPI introduced in Hibernate 3.3.
/*
* 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);
}
}