AbstractCacheManager

org.beangle.cache.AbstractCacheManager
abstract class AbstractCacheManager(val autoCreate: Boolean) extends CacheManager

Attributes

Graph
Supertypes
trait Disposable
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Abstract methods

protected def findCache[K, V](name: String, keyType: Class[K], valueType: Class[V]): Cache[K, V]
protected def newCache[K, V](name: String, keyType: Class[K], valueType: Class[V]): Cache[K, V]

Concrete methods

final override def getCache[K, V](name: String, keyType: Class[K], valueType: Class[V]): Cache[K, V]

Return the cache associated with the given name.

Return the cache associated with the given name.

Attributes

Definition Classes
protected def register[K, V](name: String, cache: Cache[K, V]): Unit

Inherited methods

def destroy(): Unit

do destroy.

do destroy.

Attributes

Inherited from:
Disposable

Concrete fields

val autoCreate: Boolean