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

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

/*
 * 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.TimestampsRegion;

import java.util.Properties;

/**
 * A CoherenceTimestampsRegion is a CoherenceGeneralDataRegion intended to cache Hibernate timestamps.
 *
 * @author Randy Stafford
 */
public class CoherenceTimestampsRegion
extends CoherenceGeneralDataRegion
implements TimestampsRegion
{

    // ---- Constructors

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


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy