Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

CacheableNormalizerInterface.php

Namespace

Drupal\serialization\Normalizer

File

core/modules/serialization/src/Normalizer/CacheableNormalizerInterface.php

View source
<?php

namespace Drupal\serialization\Normalizer;

use Symfony\Component\Serializer\Normalizer\NormalizerInterface;

/**
 * Defines the interface for normalizers producing cacheable normalizations.
 *
 * @see cache
 */
interface CacheableNormalizerInterface extends NormalizerInterface {
    
    /**
     * Name of key for bubbling cacheability metadata via serialization context.
     *
     * @see \Symfony\Component\Serializer\Normalizer\NormalizerInterface::normalize()
     * @see \Symfony\Component\Serializer\SerializerInterface::serialize()
     * @see \Drupal\rest\EventSubscriber\ResourceResponseSubscriber::renderResponseBody()
     */
    const SERIALIZATION_CONTEXT_CACHEABILITY = 'cacheability';

}

Interfaces

Title Deprecated Summary
CacheableNormalizerInterface Defines the interface for normalizers producing cacheable normalizations.
RSS feed
Powered by Drupal