class KernelDestructionSubscriber

Destructs services that are initiated and tagged with "needs_destruction".

Hierarchy

Expanded class hierarchy of KernelDestructionSubscriber

1 string reference to 'KernelDestructionSubscriber'
core.services.yml in drupal/core/core.services.yml
drupal/core/core.services.yml

File

drupal/core/lib/Drupal/Core/EventSubscriber/KernelDestructionSubscriber.php, line 18
Contains \Drupal\Core\EventSubscriber\KernelDestructionSubscriber.

Namespace

Drupal\Core\EventSubscriber
View source
class KernelDestructionSubscriber extends ContainerAware implements EventSubscriberInterface {

  /**
   * Holds an array of service ID's that will require destruction.
   *
   * @var array
   */
  protected $services = array();

  /**
   * Registers a service for destruction.
   *
   * Calls to this method are set up in
   * RegisterServicesForDestructionPass::process().
   *
   * @param string $id
   *   Name of the service.
   */
  public function registerService($id) {
    $this->services[] = $id;
  }

  /**
   * Invoked by the terminate kernel event.
   *
   * @param \Symfony\Component\HttpKernel\Event\PostResponseEvent $event
   *   The event object.
   */
  public function onKernelTerminate(PostResponseEvent $event) {
    foreach ($this->services as $id) {

      // Check if the service was initialized during this request, destruction
      // is not necessary if the service was not used.
      if ($this->container
        ->initialized($id)) {
        $service = $this->container
          ->get($id);
        $service
          ->destruct();
      }
    }
  }

  /**
   * Registers the methods in this class that should be listeners.
   *
   * @return array
   *   An array of event listener definitions.
   */
  static function getSubscribedEvents() {
    $events[KernelEvents::TERMINATE][] = array(
      'onKernelTerminate',
      100,
    );
    return $events;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ContainerAware::$container protected property @api
ContainerAware::setContainer public function Sets the Container associated with this Controller. Overrides ContainerAwareInterface::setContainer
KernelDestructionSubscriber::$services protected property Holds an array of service ID's that will require destruction.
KernelDestructionSubscriber::getSubscribedEvents static function Registers the methods in this class that should be listeners. Overrides EventSubscriberInterface::getSubscribedEvents
KernelDestructionSubscriber::onKernelTerminate public function Invoked by the terminate kernel event.
KernelDestructionSubscriber::registerService public function Registers a service for destruction.