mirror of
https://github.com/php/doc-fr.git
synced 2026-03-24 07:02:06 +01:00
130 lines
3.0 KiB
XML
130 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: f0edac3006cc81cc9cd06fd21d4f4bdc244e10c9 Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
<refentry xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="syncmutex.construct">
|
|
<refnamediv>
|
|
<refname>SyncMutex::__construct</refname>
|
|
<refpurpose>Construit un nouvel objet SyncMutex</refpurpose>
|
|
</refnamediv>
|
|
|
|
<refsect1 role="description">
|
|
&reftitle.description;
|
|
<methodsynopsis>
|
|
<modifier>public</modifier> <methodname>SyncMutex::__construct</methodname>
|
|
<methodparam choice="opt"><type>string</type><parameter>name</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<simpara>
|
|
Construit un objet comptable nommé ou non.
|
|
</simpara>
|
|
</refsect1>
|
|
|
|
<refsect1 role="parameters">
|
|
&reftitle.parameters;
|
|
<variablelist>
|
|
<varlistentry>
|
|
<term><parameter>name</parameter></term>
|
|
<listitem>
|
|
<simpara>
|
|
Le nom du mutex s'il s'agit d'un objet mutex nommé.
|
|
</simpara>
|
|
<note>
|
|
<simpara>
|
|
Si le nom existe déjà, il doit être capable d'être ouvert par l'utilisateur
|
|
courant exécutant le processus, ou bien une exception sera lancée
|
|
avec le message d'erreur correspondant.
|
|
</simpara>
|
|
</note>
|
|
</listitem>
|
|
</varlistentry>
|
|
</variablelist>
|
|
</refsect1>
|
|
|
|
<refsect1 role="returnvalues">
|
|
&reftitle.returnvalues;
|
|
<simpara>
|
|
Le nouvel objet <classname>SyncMutex</classname>.
|
|
</simpara>
|
|
</refsect1>
|
|
|
|
<refsect1 role="errors">
|
|
&reftitle.errors;
|
|
<simpara>
|
|
Une exception est lancée si le mutex ne peut
|
|
être créé ou ouvert.
|
|
</simpara>
|
|
</refsect1>
|
|
|
|
<refsect1 role="examples">
|
|
&reftitle.examples;
|
|
<example>
|
|
<title>Exemple avec <function>SyncMutex::__construct</function>
|
|
et un mutex nommé avec un délai d'attente maximal pour le verrou</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$mutex = new SyncMutex("UniqueName");
|
|
|
|
if (!$mutex->lock(3000))
|
|
{
|
|
echo "Impossible de verrouiller le mutex.";
|
|
|
|
exit();
|
|
}
|
|
|
|
/* ... */
|
|
|
|
$mutex->unlock();
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
<example>
|
|
<title>Exemple avec <function>SyncMutex::__construct</function>
|
|
et un mutex non nommé</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$mutex = new SyncMutex();
|
|
|
|
$mutex->lock();
|
|
|
|
/* ... */
|
|
|
|
$mutex->unlock();
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</refsect1>
|
|
|
|
<refsect1 role="seealso">
|
|
&reftitle.seealso;
|
|
<simplelist>
|
|
<member><methodname>SyncMutex::lock</methodname></member>
|
|
<member><methodname>SyncMutex::unlock</methodname></member>
|
|
</simplelist>
|
|
</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
|
|
-->
|