Skip to content
Snippets Groups Projects

Backport to 10.2.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);
Please register or sign in to reply
Loading