summaryrefslogtreecommitdiff
path: root/src/leap/common/events/README.rst
diff options
context:
space:
mode:
authorTomás Touceda <chiiph@leap.se>2013-07-26 10:45:29 -0300
committerTomás Touceda <chiiph@leap.se>2013-07-26 10:45:29 -0300
commit66d02033fe4f38de04aa174b8e7b35bbabe3c678 (patch)
treec6740a2406adada67ad65c72c66b4727f0221239 /src/leap/common/events/README.rst
parent8b5e745eb274be5b38c99d1b6121521ec2023475 (diff)
parentb006c2c56fe0b83a3baf6a10a1e7dbe196051b8d (diff)
Merge branch 'release-0.2.7'
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