You are here

class BatchStorage in Zircon Profile 8.0

Same name in this branch
  1. 8.0 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
  2. 8.0 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage

Provides a proxy class for \Drupal\Core\Batch\BatchStorage.

Hierarchy

Expanded class hierarchy of BatchStorage

See also

\Drupal\Component\ProxyBuilder

File

core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php, line 19
Contains \Drupal\Core\ProxyClass\Batch\BatchStorage.

Namespace

Drupal\Core\ProxyClass\Batch
View source
class BatchStorage implements \Drupal\Core\Batch\BatchStorageInterface {
  use \Drupal\Core\DependencyInjection\DependencySerializationTrait;

  /**
   * The id of the original proxied service.
   *
   * @var string
   */
  protected $drupalProxyOriginalServiceId;

  /**
   * The real proxied service, after it was lazy loaded.
   *
   * @var \Drupal\Core\Batch\BatchStorage
   */
  protected $service;

  /**
   * The service container.
   *
   * @var \Symfony\Component\DependencyInjection\ContainerInterface
   */
  protected $container;

  /**
   * Constructs a ProxyClass Drupal proxy object.
   *
   * @param \Symfony\Component\DependencyInjection\ContainerInterface $container
   *   The container.
   * @param string $drupal_proxy_original_service_id
   *   The service ID of the original service.
   */
  public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, $drupal_proxy_original_service_id) {
    $this->container = $container;
    $this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id;
  }

  /**
   * Lazy loads the real service from the container.
   *
   * @return object
   *   Returns the constructed real service.
   */
  protected function lazyLoadItself() {
    if (!isset($this->service)) {
      $this->service = $this->container
        ->get($this->drupalProxyOriginalServiceId);
    }
    return $this->service;
  }

  /**
   * {@inheritdoc}
   */
  public function load($id) {
    return $this
      ->lazyLoadItself()
      ->load($id);
  }

  /**
   * {@inheritdoc}
   */
  public function delete($id) {
    return $this
      ->lazyLoadItself()
      ->delete($id);
  }

  /**
   * {@inheritdoc}
   */
  public function update(array $batch) {
    return $this
      ->lazyLoadItself()
      ->update($batch);
  }

  /**
   * {@inheritdoc}
   */
  public function cleanup() {
    return $this
      ->lazyLoadItself()
      ->cleanup();
  }

  /**
   * {@inheritdoc}
   */
  public function create(array $batch) {
    return $this
      ->lazyLoadItself()
      ->create($batch);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BatchStorage::$container protected property The service container.
BatchStorage::$drupalProxyOriginalServiceId protected property The id of the original proxied service.
BatchStorage::$service protected property The real proxied service, after it was lazy loaded.
BatchStorage::cleanup public function Cleans up failed or old batches. Overrides BatchStorageInterface::cleanup
BatchStorage::create public function Creates and saves a batch. Overrides BatchStorageInterface::create
BatchStorage::delete public function Deletes a batch. Overrides BatchStorageInterface::delete
BatchStorage::lazyLoadItself protected function Lazy loads the real service from the container.
BatchStorage::load public function Loads a batch. Overrides BatchStorageInterface::load
BatchStorage::update public function Updates a batch. Overrides BatchStorageInterface::update
BatchStorage::__construct public function Constructs a ProxyClass Drupal proxy object.
DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for serialization.
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2