PHP 8.1.28 Released!

Worker::stack

(PECL pthreads >= 2.0.0)

Worker::stackStacking work

Descrizione

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

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

Elenco dei parametri

work

A Threaded object to be executed by the worker.

Valori restituiti

The new size of the stack.

Esempi

Example #1 Stacking a task for execution onto a worker

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

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

Il precedente esempio visualizzerà:

int(1)

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top