コード例 #1
0
ファイル: ZendQueue.php プロジェクト: brikou/zend_cloud
 /**
  * List all queues.
  *
  * @param  array $options
  * @return array Queue IDs
  */
 public function listQueues($options = null)
 {
     try {
         return $this->_queue->getQueues();
     } catch (\Zend\Queue\Exception $e) {
         throw new Exception\RuntimeException('Error on listing queues: ' . $e->getMessage(), $e->getCode(), $e);
     }
 }