You are here

public function BatchManager::purgeAllKeyValueStores in Workbench Moderation to Content Moderation 8

Purge all key value stores used by the batch manager.

Note: this should only be used during the module's uninstall.

File

src/BatchManager.php, line 258

Class

BatchManager
Manages communication between Batch API and the migration manager.

Namespace

Drupal\wbm2cm

Code

public function purgeAllKeyValueStores() {
  $this->batchStore
    ->deleteAll();
}