• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/callqueue.php
  • Класс: BitrixVoximplantCallQueue
  • Вызов: CallQueue::dequeueFirstUserCall
static function dequeueFirstUserCall($userId)
{
	$call = static::getCallToDequeue($userId);
	if(!$call)
	{
		return false;
	}

	return $call->dequeue($userId);
}