You are here

interface CacheRawFactoryInterface in Supercache 2.0.x

Same name and namespace in other branches
  1. 8 src/Cache/CacheRawFactoryInterface.php \Drupal\supercache\Cache\CacheRawFactoryInterface

An interface defining cache factory classes.

Hierarchy

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\Cache
View 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

Namesort descending Modifiers Type Description Overrides
CacheRawFactoryInterface::get public function Gets a cache backend class for a given cache bin. 3