mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-29 23:38:56 +00:00

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@336885 c90b9560-bf6c-de11-be94-00142212c4b1
149 lines
3 KiB
XML
149 lines
3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
|
|
<refentry xml:id="pool.collect" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<refnamediv>
|
|
<refname>Pool::collect</refname>
|
|
<refpurpose>Collect references to completed tasks</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<modifier>public</modifier> <type>void</type><methodname>Pool::collect</methodname>
|
|
<methodparam><type>Callable</type><parameter>collector</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
Allows the Pool to collect references determined to be garbage by the given collector
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>collector</parameter></term>
|
|
<listitem>
|
|
<para>
|
|
A Callable collector
|
|
</para>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<para>
|
|
void
|
|
</para>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
<example>
|
|
<title>Creating Pools</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
class MyWork extends Stackable {
|
|
public function __construct() {
|
|
$this->complete = false;
|
|
}
|
|
|
|
public function run() {
|
|
printf(
|
|
"Hello from %s in Thread #%lu\n",
|
|
__CLASS__, $this->worker->getThreadId());
|
|
$this->complete = true;
|
|
}
|
|
|
|
public function isComplete() {
|
|
return $this->complete;
|
|
}
|
|
|
|
protected $complete;
|
|
}
|
|
|
|
class MyWorker extends Worker {
|
|
|
|
public function __construct(Something $something) {
|
|
$this->something = $something;
|
|
}
|
|
|
|
public function run() {
|
|
/** ... **/
|
|
}
|
|
}
|
|
|
|
$pool = new Pool(8, \MyWorker::class, [new Something()]);
|
|
$pool->submit(new MyWork());
|
|
|
|
usleep(1000);
|
|
|
|
$pool->collect(function($work){
|
|
return $work->isComplete();
|
|
});
|
|
var_dump($pool);
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
&example.outputs;
|
|
<screen>
|
|
<![CDATA[
|
|
Hello from MyWork in Thread #140222468777728
|
|
object(Pool)#1 (6) {
|
|
["size":protected]=>
|
|
int(8)
|
|
["class":protected]=>
|
|
string(8) "MyWorker"
|
|
["workers":protected]=>
|
|
array(1) {
|
|
[0]=>
|
|
object(MyWorker)#4 (1) {
|
|
["something"]=>
|
|
object(Something)#5 (0) {
|
|
}
|
|
}
|
|
}
|
|
["work":protected]=>
|
|
array(0) {
|
|
}
|
|
["ctor":protected]=>
|
|
array(1) {
|
|
[0]=>
|
|
object(Something)#2 (0) {
|
|
}
|
|
}
|
|
["last":protected]=>
|
|
int(1)
|
|
}
|
|
]]>
|
|
</screen>
|
|
</example>
|
|
</para>
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|