summaryrefslogtreecommitdiff
path: root/src/leap/common/events/README.rst
diff options
context:
space:
mode:
authorMicah Anderson <micah@riseup.net>2013-08-13 14:25:57 -0400
committerMicah Anderson <micah@riseup.net>2013-08-13 14:27:01 -0400
commitddff9c2dda51fd28dcdc8e2db998d7254f69a41b (patch)
treeb000723d9c7e54f0ac163e54f8d0d6fcd829209a /src/leap/common/events/README.rst
parentcc8dd1e7f3d64ae6d7d69ed08a4346bfabfe7b22 (diff)
parent0e721b1b47c3b94f6d4d6709e34b6b816f9fd810 (diff)
Merge tag '0.3.0' into debian
Tag leap.common version 0.3.0
Diffstat (limited to 'src/leap/common/events/README.rst')
-rw-r--r--src/leap/common/events/README.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/leap/common/events/README.rst b/src/leap/common/events/README.rst
index 813be8b..2e7f254 100644
--- a/src/leap/common/events/README.rst
+++ b/src/leap/common/events/README.rst
@@ -1,19 +1,19 @@
Events mechanism
================
-The events mechanism allows for "components" to send signal events to each
-other by means of a centralized server. Components can register with the
+The events mechanism allows for clients to send signal events to each
+other by means of a centralized server. Clients can register with the
server to receive signals of certain types, and they can also send signals to
-the server that will then redistribute these signals to registered components.
+the server that will then redistribute these signals to registered clients.
Listening daemons
-----------------
-Both components and the server listen for incoming messages by using a
+Both clients and the server listen for incoming messages by using a
listening daemon that runs in its own thread. The server daemon has to be
-started explicitly, while components daemon will be started whenever a
-component registers with the server to receive messages.
+started explicitly, while clients daemon will be started whenever a
+client registers with the server to receive messages.
How to use it