class BatchStorage

Same name in this branch
  1. 11.x core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
  2. 9 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
  3. 8.9.x core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
  4. 8.9.x core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage
  5. 10 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage
  6. 10 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\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 15

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);
    }
    
    /**
     * {@inheritdoc}
     */
    public function getId() : int {
        return $this->lazyLoadItself()
            ->getId();
    }
    
    /**
     * {@inheritdoc}
     */
    public function schemaDefinition() {
        return $this->lazyLoadItself()
            ->schemaDefinition();
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title 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::getId public function
BatchStorage::lazyLoadItself protected function Lazy loads the real service from the container.
BatchStorage::load public function Loads a batch. Overrides BatchStorageInterface::load
BatchStorage::schemaDefinition public function
BatchStorage::update public function Updates a batch. Overrides BatchStorageInterface::update
BatchStorage::__construct public function Constructs a ProxyClass Drupal proxy object.
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 1
DependencySerializationTrait::__wakeup public function 2

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