keycloak
静的公開メンバ関数 | 全メンバ一覧
org.keycloak.models.sessions.infinispan.CacheDecorators クラス
org.keycloak.models.sessions.infinispan.CacheDecorators 連携図
Collaboration graph

静的公開メンバ関数

static< K, V > AdvancedCache< K, V > localCache (Cache< K, V > cache)
 
static< K, V > AdvancedCache< K, V > skipCacheLoaders (Cache< K, V > cache)
 
static< K, V > AdvancedCache< K, V > skipCacheStore (Cache< K, V > cache)
 

詳解

著者
Marek Posolda

関数詳解

◆ localCache()

static <K, V> AdvancedCache<K, V> org.keycloak.models.sessions.infinispan.CacheDecorators.localCache ( Cache< K, V >  cache)
inlinestatic

Adds Flag#CACHE_MODE_LOCAL flag to the cache.

引数
cache
戻り値
Cache with the flag applied.
34  {
35  return cache.getAdvancedCache().withFlags(Flag.CACHE_MODE_LOCAL);
36  }

◆ skipCacheLoaders()

static <K, V> AdvancedCache<K, V> org.keycloak.models.sessions.infinispan.CacheDecorators.skipCacheLoaders ( Cache< K, V >  cache)
inlinestatic

Adds Flag#SKIP_CACHE_LOAD and Flag#SKIP_CACHE_STORE flags to the cache.

引数
cache
戻り値
Cache with the flags applied.
43  {
44  return cache.getAdvancedCache().withFlags(Flag.SKIP_CACHE_LOAD, Flag.SKIP_CACHE_STORE);
45  }

◆ skipCacheStore()

static <K, V> AdvancedCache<K, V> org.keycloak.models.sessions.infinispan.CacheDecorators.skipCacheStore ( Cache< K, V >  cache)
inlinestatic

Adds Flag#SKIP_CACHE_STORE flag to the cache.

引数
cache
戻り値
Cache with the flags applied.
52  {
53  return cache.getAdvancedCache().withFlags(Flag.SKIP_CACHE_STORE);
54  }

このクラス詳解は次のファイルから抽出されました: