• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/businesssuite/utils/servicequeue.php
  • Класс: BitrixSeoBusinessSuiteUtilsServiceQueue
  • Вызов: ServiceQueue::getInstance
static function getInstance(string $type) : self
{
	if(!array_key_exists($type,static::$instancePool))
	{
		static::$instancePool[$type] = new static($type);
	}
	return static::$instancePool[$type];
}