org.hibernate.cache.spi.QueryCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-core Show documentation
Show all versions of hibernate-core Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries just until they add them in themselves
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
*/
package org.hibernate.cache.spi;
import java.io.Serializable;
import java.util.List;
import java.util.Set;
import org.hibernate.cache.CacheException;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.type.Type;
/**
* @author Steve Ebersole
*
* @deprecated Use {@link QueryResultsCache} instead -
* {@link CacheImplementor#getQueryResultsCache} rather than
* {@link CacheImplementor#getQueryCache}
*/
@Deprecated
public interface QueryCache {
/**
* Clear items from the query cache.
*
* @throws CacheException Indicates a problem delegating to the underlying cache.
*/
void clear();
/**
* Put a result into the query cache.
*
* @param key The cache key
* @param returnTypes The result types
* @param result The results to cache
* @param isNaturalKeyLookup Was this a natural id lookup?
* @param session The originating session
*
* @return Whether the put actually happened.
*/
boolean put(
QueryKey key,
Type[] returnTypes,
List result,
boolean isNaturalKeyLookup,
SharedSessionContractImplementor session);
/**
* Get results from the cache.
*
* @param key The cache key
* @param returnTypes The result types
* @param isNaturalKeyLookup Was this a natural id lookup?
* @param spaces The query spaces (used in invalidation plus validation checks)
* @param session The originating session
*
* @return The cached results; may be null.
*/
List get(
QueryKey key,
Type[] returnTypes,
boolean isNaturalKeyLookup,
Set spaces,
SharedSessionContractImplementor session);
/**
* Destroy the cache.
*/
void destroy();
/**
* The underlying cache factory region being used.
*
* @return The cache region.
*/
QueryResultsRegion getRegion();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy