Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
ithreadstrategy.php
1<?php
2
4
6
8{
9 public const TEN = 'Ten';
10 public const SINGLE = 'Single';
11
12 function getRecipients(int $limit): Result;
13
14 function fillThreads(): void;
15
16 function lockThread(): void;
17 function hasUnprocessedThreads(): bool;
18
19 function getThreadId(): ?int;
20 function setPostingId(int $postingId): IThreadStrategy;
21
22 function updateStatus(string $status): bool;
23
24 function lastThreadId(): int;
25 function isProcessLimited(): bool;
26 function checkThreads(): ?int;
27}