-
Notifications
You must be signed in to change notification settings - Fork 869
Expand file tree
/
Copy pathevent.persistence.xml
More file actions
69 lines (69 loc) · 2.1 KB
/
event.persistence.xml
File metadata and controls
69 lines (69 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
<chapter xml:id="event.persistence" 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
-->