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
- Alphabetic
- By Inheritance
Inherited
- CacheState
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new CacheState(current: MemoryCacheSnapshot, previous: MemoryCacheSnapshot)
- current
The current values in the cache.
- previous
The previous values in the cache.
Value Members
- val current: MemoryCacheSnapshot
- val previous: MemoryCacheSnapshot
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def update(newSnapshot: MemoryCacheSnapshot): CacheState