diff options
author | Rafael H. Schloming <rhs@apache.org> | 2009-10-26 15:49:02 +0000 |
---|---|---|
committer | Rafael H. Schloming <rhs@apache.org> | 2009-10-26 15:49:02 +0000 |
commit | c35e274e79604864e6911ce4999fa95e26f27768 (patch) | |
tree | 84616b85b6f4de8a7a3fbd84acf589b53dcd13b5 /python/qpid/messaging.py | |
parent | 74d60c79368c1a2e70595ab33aa469e2746009c8 (diff) | |
download | qpid-python-c35e274e79604864e6911ce4999fa95e26f27768.tar.gz |
improved request/response performance by using an I/O based condition instead of the default condition from the python threading module
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@829837 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'python/qpid/messaging.py')
-rw-r--r-- | python/qpid/messaging.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/qpid/messaging.py b/python/qpid/messaging.py index 3e3c8f36cb..2fe7d33ca9 100644 --- a/python/qpid/messaging.py +++ b/python/qpid/messaging.py @@ -31,11 +31,11 @@ Areas that still need work: """ from codec010 import StringCodec -from concurrency import synchronized, Waiter +from concurrency import synchronized, Waiter, Condition from datatypes import timestamp, uuid4, Serial from logging import getLogger from ops import PRIMITIVE -from threading import Thread, RLock, Condition +from threading import Thread, RLock from util import default log = getLogger("qpid.messaging") |