PHPマニュアル/PEARマニュアル | ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot

Worker::stack - Stacking work | JavaScript入門&応用&リファレンスなら「JavaScriptist」

  

Worker::stack

(PECL pthreads >= 2.0.0)

Worker::stackStacking work

説明

public int Worker::stack ( Threaded &$work )

Appends the new work to the stack of the referenced worker.

パラメータ

work

A Threaded object to be executed by the worker.

返り値

The new size of the stack.

例1 Stacking a task for execution onto a worker

<?php
$worker 
= new Worker();
$work = new class extends Threaded {};

var_dump($worker->stack($work));

上の例の出力は以下となります。

int(1)


忘却曲線を使ってこの知識を確実に記憶に残す

フォーラムで「Worker::stack - Stacking work」について話す
各種マニュアル: PHPマニュアル | PEARマニュアル | Smarty(英語)マニュアル | PHP-GTKマニュアル | Worker::stack - Stacking work」をGoogle検索
copyright © 1997-2024 PHP ドキュメント作成グループ(ライセンス). provided by php spot. マニュアル: