2013-03-13 18:04:36 +00:00
|
|
|
<?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>
|
2013-03-13 18:14:25 +00:00
|
|
|
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.
|
2013-03-13 18:04:36 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2013-03-13 18:14:25 +00:00
|
|
|
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.
|
2013-03-13 18:04:36 +00:00
|
|
|
</para>
|
|
|
|
<para>
|
2013-03-13 18:14:25 +00:00
|
|
|
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:
|
2013-03-13 18:04:36 +00:00
|
|
|
</para>
|
|
|
|
<orderedlist>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
|
|
|
Whenever the socket or file descriptor is ready for reading.
|
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
<listitem>
|
|
|
|
<para>
|
2013-03-13 18:14:25 +00:00
|
|
|
Whenever five seconds have passed since the event last became active.
|
2013-03-13 18:04:36 +00:00
|
|
|
</para>
|
|
|
|
</listitem>
|
|
|
|
</orderedlist>
|
|
|
|
<para>
|
2013-03-13 18:14:25 +00:00
|
|
|
See also
|
|
|
|
<link
|
2013-03-13 18:04:36 +00:00
|
|
|
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
|
|
|
|
-->
|