/**
* Tests that DelayedRequeueException behaves as expected when running cron.
*/
/**
* Constructs a new queue object for a given name.
*
* @param string $name
* The name of the collection holding key and value pairs.
*
* @return \Drupal\Core\Queue\DatabaseQueue
* A key/value store implementation for the given $collection.
*/ publicfunctionget($name){ returnnewDatabaseQueue($name, $this->connection); }