You are here

interface AcquiaPurgeProcessorInterface in Acquia Purge 7

Describes a processor that processes items from the queue.

Hierarchy

Expanded class hierarchy of AcquiaPurgeProcessorInterface

All classes that implement AcquiaPurgeProcessorInterface

File

lib/processor/AcquiaPurgeProcessorInterface.php, line 11
Contains AcquiaPurgeProcessorInterface.

View source
interface AcquiaPurgeProcessorInterface {

  /**
   * Determine if the processor is enabled or not.
   */
  public static function isEnabled();

  /**
   * Subscribe to the events this processor requires.
   *
   * @return string[]
   *   Non-associative array of event names.
   */
  public function getSubscribedEvents();

}

Members

Namesort descending Modifiers Type Description Overrides
AcquiaPurgeProcessorInterface::getSubscribedEvents public function Subscribe to the events this processor requires. 3
AcquiaPurgeProcessorInterface::isEnabled public static function Determine if the processor is enabled or not. 3