diff options
author | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-09-16 14:03:42 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@fastmq.commkdir> | 2009-09-16 14:03:42 +0200 |
commit | a71d00288008b7ed1dc91b6ad3d5fdf25a5e683e (patch) | |
tree | c4c1dde7b4cb638c88fc92647bdae836ab8216ea /perf/python/local_thr.py | |
parent | 4631fde7e385ea31e85f41290614afb9bda391c9 (diff) | |
parent | 7a5db6041f4f11ed502fa7446da900509dedb00f (diff) |
Merge branch 'master' of git@github.com:sustrik/zeromq2
Diffstat (limited to 'perf/python/local_thr.py')
-rw-r--r-- | perf/python/local_thr.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/perf/python/local_thr.py b/perf/python/local_thr.py index 0d142cf..26896d0 100644 --- a/perf/python/local_thr.py +++ b/perf/python/local_thr.py @@ -35,7 +35,13 @@ def main (): sys.exit (1) ctx = libpyzmq.Context (1, 1); - s = libpyzmq.Socket (ctx, libpyzmq.P2P) + s = libpyzmq.Socket (ctx, libpyzmq.SUB) + + s.setsockopt (libpyzmq.SUBSCRIBE , "*"); + + # Add your socket options here. + # For example ZMQ_RATE, ZMQ_RECOVERY_IVL and ZMQ_MCAST_LOOP for PGM. + s.bind (bind_to) msg = s.recv () |