Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / lib / Drush / Queue / QueueInterface.php
diff --git a/vendor/drush/drush/lib/Drush/Queue/QueueInterface.php b/vendor/drush/drush/lib/Drush/Queue/QueueInterface.php
deleted file mode 100644 (file)
index 5d8adba..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace Drush\Queue;
-
-/**
- * Defines an interface for interacting with queues.
- */
-interface QueueInterface {
-
-  /**
-   * Returns all queues.
-   */
-  public function getQueues();
-
-  /**
-   * Runs a given queue.
-   *
-   * @param string $name
-   *   The name of the queue to run.
-   * @param int $time_limit
-   *   The maximum number of seconds that the queue can run. By default the
-   *   queue will be run as long as possible.
-   *
-   * @return int
-   *   The number of items successfully processed from the queue.
-   */
-  public function run($name, $time_limit = 0);
-
-  /**
-   * Returns a given queue definition.
-   *
-   * @param string $name
-   *   The name of the queue to run.
-   */
-  public function getQueue($name);
-
-  /**
-   * Returns a given queue definition.
-   *
-   * @param string $name
-   *   The name of the queue to run.
-   */
-  public function getInfo($name);
-
-}