From a92513dad1f6072a1611610f459ed93348783aa2 Mon Sep 17 00:00:00 2001 From: Gaetan Semet Date: Wed, 28 Sep 2016 23:33:31 +0200 Subject: [PATCH] update doc --- doc/source/index.rst | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/source/index.rst b/doc/source/index.rst index 0791b0d..39e5d09 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -6,7 +6,13 @@ Readers/Writer Lock for Twisted Twisted implementation of a `Readers/Writer Lock -`_. This synchronization primitive allows to lock +`_. + +- License: MIT +- Source: https://github.com/Stibbons/txrwlock +- Overview: http://www.great-a-blog.co/readerswriter-lock-for-twisted/ + +This synchronization primitive allows to lock a share depending on two access roles: "reader" which only access to the data without modifying it, and "writer" which may want to change the data in the share.