You are here

protected function AcquiaLiftAgent::getQueue in Acquia Lift Connector 7

Returns a queue to use.

Return value

DrupalQueueInterface

File

plugins/agent_types/AcquiaLiftAgent.inc, line 853
Provides an agent type for Acquia Lift

Class

AcquiaLiftAgent

Code

protected function getQueue() {
  if ($this->queue !== NULL) {
    return $this->queue;
  }
  return DrupalQueue::get('acquia_lift_sync');
}