You are here

ChainResponsePolicyInterface.php in Drupal 8

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/PageCache/ChainResponsePolicyInterface.php

File

core/lib/Drupal/Core/PageCache/ChainResponsePolicyInterface.php
View source
<?php

namespace Drupal\Core\PageCache;


/**
 * Defines the interface for compound request policies.
 */
interface ChainResponsePolicyInterface extends ResponsePolicyInterface {

  /**
   * Add a policy to the list of policy rules.
   *
   * @param \Drupal\Core\PageCache\ResponsePolicyInterface $policy
   *   The request policy rule to add.
   *
   * @return $this
   */
  public function addPolicy(ResponsePolicyInterface $policy);

}

Interfaces

Namesort descending Description
ChainResponsePolicyInterface Defines the interface for compound request policies.