CacheDecoratorInterface.php

Contains Drupal\Core\CacheDecorator\CacheDecoratorInterface.

Namespace

Drupal\Core\CacheDecorator

File

drupal/core/lib/Drupal/Core/CacheDecorator/CacheDecoratorInterface.php
View source
<?php

/**
 * @file
 * Contains Drupal\Core\CacheDecorator\CacheDecoratorInterface.
 */
namespace Drupal\Core\CacheDecorator;


/**
 * Defines an interface for cache decorator implementations.
 */
interface CacheDecoratorInterface {

  /**
   * Specify the key to use when writing the cache.
   */
  public function setCacheKey($key);

  /**
   * Write the cache.
   */
  public function writeCache();

}

Interfaces

Namesort descending Description
CacheDecoratorInterface Defines an interface for cache decorator implementations.