BatchStorageInterface.php

Same filename and directory in other branches
  1. 9 core/lib/Drupal/Core/Batch/BatchStorageInterface.php
  2. 10 core/lib/Drupal/Core/Batch/BatchStorageInterface.php
  3. 11.x core/lib/Drupal/Core/Batch/BatchStorageInterface.php

Namespace

Drupal\Core\Batch

File

core/lib/Drupal/Core/Batch/BatchStorageInterface.php

View source
<?php

namespace Drupal\Core\Batch;


/**
 * Defines a common interface for batch storage operations.
 */
interface BatchStorageInterface {
    
    /**
     * Loads a batch.
     *
     * @param int $id
     *   The ID of the batch to load.
     *
     * @return array
     *   An array representing the batch, or FALSE if no batch was found.
     */
    public function load($id);
    
    /**
     * Creates and saves a batch.
     *
     * @param array $batch
     *   The array representing the batch to create.
     */
    public function create(array $batch);
    
    /**
     * Updates a batch.
     *
     * @param array $batch
     *   The array representing the batch to update.
     */
    public function update(array $batch);
    
    /**
     * Deletes a batch.
     *
     * @param int $id
     *   The ID of the batch to delete.
     */
    public function delete($id);
    
    /**
     * Cleans up failed or old batches.
     */
    public function cleanup();

}

Interfaces

Title Deprecated Summary
BatchStorageInterface Defines a common interface for batch storage operations.

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