Pool 類

Pool 類

(PECL pthreads >= 2.0.0)

簡介

Pool 對象是多個 Worker 對象的容器,同時也是它們的控制器。

執行緒池是對 Worker 功能的高層抽像,包括按照 pthreads 需要的方式來管理應用的功能。

類摘要

class Pool {
/* 屬性 */
protected $size;
protected $class;
protected $workers;
protected $ctor;
protected $last;
/* 方法 */
public collect(Callable $collector = ?): int
public __construct(int $size, string $class = ?, array $ctor = ?): Pool
publicresize(int $size): void
publicshutdown(): void
public submit(Threaded $task): int
public submitTo(int $worker, Threaded $task): int
}

屬性

size

Pool 對象可容納的 Worker 對象的最大數量

class

Worker 的類

workers

指向 Worker 對象的引用

ctor

構造新的 Worker 對像時所需的參數

last

最後使用的 Worker 對像在池中的位置偏移量

目錄

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *