AbstractCacheManager

abstract class AbstractCacheManager(val autoCreate: Boolean) extends CacheManager
trait Disposable
class Object
trait Matchable
class Any

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.

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

Inherited methods

def destroy(): Unit

do destroy.

do destroy.

Inherited from
Disposable

Concrete fields

val autoCreate: Boolean