ChainResponsePolicyInterface.php

Same filename and directory in other branches
  1. 8.9.x core/lib/Drupal/Core/PageCache/ChainResponsePolicyInterface.php
  2. 10 core/lib/Drupal/Core/PageCache/ChainResponsePolicyInterface.php
  3. 11.x core/lib/Drupal/Core/PageCache/ChainResponsePolicyInterface.php

Namespace

Drupal\Core\PageCache

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

Title Deprecated Summary
ChainResponsePolicyInterface Defines the interface for compound request policies.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.