CBPRestActivity::unsubscribe

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPRestActivity
  4. unsubscribe
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/restactivity.php
  • Класс: CBPRestActivity
  • Вызов: CBPRestActivity::unsubscribe
public function unsubscribe(IBPActivityExternalEventListener $eventHandler)
{
	$timeoutDuration = $this->CalculateTimeoutDuration();
	if ($timeoutDuration > 0)
	{
		$schedulerService = $this->workflow->GetService("SchedulerService");
		$schedulerService->UnSubscribeOnTime($this->subscriptionId);
		$this->subscriptionId = 0;
	}

	$this->eventId = null;
	$this->workflow->RemoveEventHandler($this->name, $eventHandler);
}

Добавить комментарий