interface CacheRawFactoryInterface in Supercache 2.0.x
Same name and namespace in other branches
- 8 src/Cache/CacheRawFactoryInterface.php \Drupal\supercache\Cache\CacheRawFactoryInterface
An interface defining cache factory classes.
Hierarchy
- interface \Drupal\supercache\Cache\CacheRawFactoryInterface
Expanded class hierarchy of CacheRawFactoryInterface
All classes that implement CacheRawFactoryInterface
1 file declares its use of CacheRawFactoryInterface
- DatabaseRawBackendFactory.php in src/
Cache/ DatabaseRawBackendFactory.php - Contains \Drupal\supercache\Cache\DatabaseBackendFactory.
File
- src/
Cache/ CacheRawFactoryInterface.php, line 13 - Contains \Drupal\supercache\Cache\CacheRawFactoryInterface.
Namespace
Drupal\supercache\CacheView source
interface CacheRawFactoryInterface {
/**
* Gets a cache backend class for a given cache bin.
*
* @param string $bin
* The cache bin for which a cache backend object should be returned.
*
* @return \Drupal\supercache\Cache\CacheRawBackendInterface
* The cache backend object associated with the specified bin.
*/
public function get($bin);
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CacheRawFactoryInterface:: |
public | function | Gets a cache backend class for a given cache bin. | 3 |