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