c

ackcord

CacheState

case class CacheState(current: MemoryCacheSnapshot, previous: MemoryCacheSnapshot) extends Product with Serializable

Represents the state of the cache for a single point.

current

The current values in the cache.

previous

The previous values in the cache.

Source
CacheState.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CacheState
  2. Serializable
  3. Product
  4. Equals
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new CacheState(current: MemoryCacheSnapshot, previous: MemoryCacheSnapshot)

    current

    The current values in the cache.

    previous

    The previous values in the cache.

Value Members

  1. val current: MemoryCacheSnapshot
  2. val previous: MemoryCacheSnapshot
  3. def productElementNames: Iterator[String]
    Definition Classes
    Product
  4. def update(newSnapshot: MemoryCacheSnapshot): CacheState