Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sender/lib/posting/threadstrategy/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sender/lib/posting/threadstrategy/threadstrategycontext.php

<?php

namespace Bitrix\Sender\Posting\ThreadStrategy;

class ThreadStrategyContext
{
	public static function buildStrategy($type):?IThreadStrategy
	{
		switch($type)
		{
			case IThreadStrategy::TEN:
				return new TenThreadsStrategy();
			break;
			case IThreadStrategy::SINGLE:
			default:
				return new SingleThreadStrategy();
			break;
		}
	}
}