TieredCache constructor

TieredCache(
  1. Cache _primary,
  2. Cache _secondary
)

Builds a TieredCache with a primary and a secondary cache

  • _primary: The primary Cache
  • _secondary: The secondary Cache

Returns a TieredCache

Implementation

TieredCache(this._primary, this._secondary);