• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/posting/segmentdatabuilder.php
  • Класс: BitrixSenderPostingSegmentDataBuilder
  • Вызов: SegmentDataBuilder::updateGroupStateOffset
public function updateGroupStateOffset(int $offset)
{
	$groupState = $this->getCurrentGroupState();
	if ($groupState)
	{
		GroupStateTable::update(
			$groupState['ID'],
			[
				'FILTER_ID' => $this->filterId,
				'GROUP_ID' => $this->groupId,
				'OFFSET' => $offset,
				'STATE' => GroupStateTable::STATES['IN_PROGRESS'],
			]
		);
	}
}