You are here

interface RollbackAwareInterface in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/src/Event/RollbackAwareInterface.php \Drupal\migrate\Event\RollbackAwareInterface
  2. 10 core/modules/migrate/src/Event/RollbackAwareInterface.php \Drupal\migrate\Event\RollbackAwareInterface

Interface for plugins that react to pre- or post-rollback events.

Hierarchy

Expanded class hierarchy of RollbackAwareInterface

All classes that implement RollbackAwareInterface

2 files declare their use of RollbackAwareInterface
PluginEventSubscriber.php in core/modules/migrate/src/Plugin/PluginEventSubscriber.php
SourcePluginBase.php in core/modules/migrate/src/Plugin/migrate/source/SourcePluginBase.php

File

core/modules/migrate/src/Event/RollbackAwareInterface.php, line 8

Namespace

Drupal\migrate\Event
View source
interface RollbackAwareInterface {

  /**
   * Performs pre-rollback tasks.
   *
   * @param \Drupal\migrate\Event\MigrateRollbackEvent $event
   *   The pre-rollback event object.
   */
  public function preRollback(MigrateRollbackEvent $event);

  /**
   * Performs post-rollback tasks.
   *
   * @param \Drupal\migrate\Event\MigrateRollbackEvent $event
   *   The post-rollback event object.
   */
  public function postRollback(MigrateRollbackEvent $event);

}

Members

Namesort descending Modifiers Type Description Overrides
RollbackAwareInterface::postRollback public function Performs post-rollback tasks. 1
RollbackAwareInterface::preRollback public function Performs pre-rollback tasks. 1