Packages

trait Cache[K, V] extends AnyRef

Basic cache API providing get/put operations

Source
Cache.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Cache
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def get(key: K): Option[V]
  2. abstract def invalidate(key: K): Unit
  3. abstract def put(key: K, value: V): Unit