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

Breadcrumb

  1. Drupal Core 11.1.x
  2. ResetInterface.php

interface ResetInterface

Provides a way to reset an object to its initial state.

When calling the "reset()" method on an object, it should be put back to its initial state. This usually means clearing any internal buffers and forwarding the call to internal dependencies. All properties of the object should be put back to the same state it had when it was first ready to use.

This method could be called, for example, to recycle objects that are used as services, so that they can be used to handle several requests in the same process loop (note that we advise making your services stateless instead of implementing this interface when possible.)

Hierarchy

  • interface \Symfony\Contracts\Service\ResetInterface

Expanded class hierarchy of ResetInterface

All classes that implement ResetInterface

13 files declare their use of ResetInterface
AbstractSessionListener.php in vendor/symfony/http-kernel/EventListener/AbstractSessionListener.php
Application.php in vendor/symfony/console/Application.php
Container.php in vendor/symfony/dependency-injection/Container.php
Container.php in core/lib/Drupal/Component/DependencyInjection/Container.php
DataCollectorInterface.php in vendor/symfony/http-kernel/DataCollector/DataCollectorInterface.php

... See full list

File

vendor/symfony/service-contracts/ResetInterface.php, line 27

Namespace

Symfony\Contracts\Service
View source
interface ResetInterface {
    
    /**
     * @return void
     */
    public function reset();

}

Members

Title Sort descending Modifiers Object type Summary Overrides
ResetInterface::reset public function 12

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal