类org.hibernate.cache.spi.UpdateTimestampsCache源码实例Demo

下面列出了怎么用org.hibernate.cache.spi.UpdateTimestampsCache的API类实例代码及写法,或者点击链接到github查看源代码。

源代码1 项目: sakai   文件: IgniteStandardQueryCacheFactory.java
@Override
public QueryCache getQueryCache(
        final String regionName,
        final UpdateTimestampsCache updateTimestampsCache,
        final Settings settings,
        final Properties props) throws HibernateException {
    return new IgniteStandardQueryCache(settings, props, updateTimestampsCache, regionName);
}
 
源代码2 项目: sakai   文件: IgniteStandardQueryCacheFactory.java
@Override
public QueryCache getQueryCache(
        final String regionName,
        final UpdateTimestampsCache updateTimestampsCache,
        final Settings settings,
        final Properties props) throws HibernateException {
    return new IgniteStandardQueryCache(settings, props, updateTimestampsCache, regionName);
}
 
源代码3 项目: lemon   文件: SessionFactoryWrapper.java
public UpdateTimestampsCache getUpdateTimestampsCache() {
    return sessionFactoryImplementor.getUpdateTimestampsCache();
}
 
源代码4 项目: lams   文件: CacheImplementor.java
/**
 * Get {@code UpdateTimestampsCache} instance managed by the {@code SessionFactory}.
 *
 * @deprecated Use {@link #getTimestampsCache} instead
 */
@Deprecated
default UpdateTimestampsCache getUpdateTimestampsCache() {
	return getTimestampsCache();
}
 
源代码5 项目: sakai   文件: IgniteStandardQueryCache.java
/**
 * Constructs a StandardQueryCache instance
 *
 * @param settings              The SessionFactory settings.
 * @param props                 Any properties
 * @param updateTimestampsCache The update-timestamps cache to use.
 * @param regionName            The base query cache region name
 */
public IgniteStandardQueryCache(Settings settings, Properties props, UpdateTimestampsCache updateTimestampsCache, String regionName) {
    super(settings, props, updateTimestampsCache, regionName);
}
 
源代码6 项目: sakai   文件: IgniteStandardQueryCache.java
/**
 * Constructs a StandardQueryCache instance
 *
 * @param settings              The SessionFactory settings.
 * @param props                 Any properties
 * @param updateTimestampsCache The update-timestamps cache to use.
 * @param regionName            The base query cache region name
 */
public IgniteStandardQueryCache(Settings settings, Properties props, UpdateTimestampsCache updateTimestampsCache, String regionName) {
    super(settings, props, updateTimestampsCache, regionName);
}
 
 类所在包
 类方法
 同包方法