Skip to content
Snippets Groups Projects

Add QueueFactoryInterface

Closed Dave Long requested to merge issue/drupal-3416826:3416826-queue-factory-services into 11.x
1 unresolved thread

Closes #3416826

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
4
5 /**
6 * An interface defining queue factory classes.
7 */
8 interface QueueFactoryInterface {
9
10 /**
11 * Constructs a new queue object for a given name.
12 *
13 * @param string $name
14 * The name of the queue.
15 *
16 * @return \Drupal\Core\Queue\QueueInterface
17 * The queue object.
18 */
19 public function get($name);
  • Dave Long added 1 commit

    added 1 commit

    Compare with previous version

  • closed

  • Please register or sign in to reply
    Loading