| 1 | <?php |
||
| 11 | final class Qos |
||
| 12 | { |
||
| 13 | private $prefetchSize; |
||
| 14 | private $prefetchCount; |
||
| 15 | private $global = false; |
||
| 16 | |||
| 17 | 4 | public function __construct(int $prefetchSize, int $prefetchCount) |
|
| 26 | |||
| 27 | 1 | public static function global(int $prefetchSize, int $prefetchCount): self |
|
| 34 | |||
| 35 | 2 | public function prefetchSize(): int |
|
| 39 | |||
| 40 | 2 | public function prefetchCount(): int |
|
| 44 | |||
| 45 | 2 | public function isGlobal(): bool |
|
| 49 | } |
||
| 50 |