php-doc-en/reference/event/event.persistence.xml

70 lines
2.1 KiB
XML
Raw Permalink Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<chapter xml:id="event.persistence" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>About event persistence</title>
<para>
By default, whenever a pending event becomes active (because its file
descriptor is ready to read or write, or because its timeout expires), it
becomes non-pending right before its callback is executed. Thus, to make the
event pending again one may call
<methodname>Event::add</methodname>
on it again from inside the callback function.
</para>
<para>
If the
<constant>Event::PERSIST</constant>
flag is set on an event, however, the event is
<emphasis>persistent</emphasis>
. This means that event remains pending even when its callback is activated.
<methodname>Event::del</methodname>
method can be called to make it non-pending.
</para>
<para>
The timeout on a persistent event resets whenever the event's callback runs.
Thus, if one has an event with flags
<constant>Event::READ</constant>
<literal>|</literal>
<constant>Event::PERSIST</constant>
and a timeout of five seconds, the event will become active:
</para>
<orderedlist>
<listitem>
<para>
Whenever the socket or file descriptor is ready for reading.
</para>
</listitem>
<listitem>
<para>
Whenever five seconds have passed since the event last became active.
</para>
</listitem>
</orderedlist>
<para>
See also
<link
xlink:href="http://www.wangafu.net/~nickm/libevent-book/Ref4_event.html#_about_event_persistence">Fast
portable non-blocking network programming with Libevent, About Event
Persistence</link>
</para>
</chapter>
<!-- 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
-->