Class: CacheStore Abstract Private
Overview
This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.
This class is abstract.
It cannot be directly instantiated. Subclasses must implement the abstract methods below.
CacheStore provides methods to mutate and fetch data from a persistent storage mechanism.
Direct Known Subclasses
Instance Method Summary collapse
- #initialize(database) ⇒ void constructor private
Constructor Details
#initialize(database) ⇒ void
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
200 201 202 |
# File 'cache_store.rb', line 200 def initialize(database) @database = T.let(database, CacheStoreDatabase) end |