From 58c9830d90fc39727cec88e48f8985a499aa0ee7 Mon Sep 17 00:00:00 2001 From: Martin Sustrik Date: Fri, 14 Jan 2011 12:25:54 +0100 Subject: XSUB socket has a subscription distributor Signed-off-by: Martin Sustrik --- src/xsub.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/xsub.cpp') diff --git a/src/xsub.cpp b/src/xsub.cpp index 5eef191..87c8852 100644 --- a/src/xsub.cpp +++ b/src/xsub.cpp @@ -27,12 +27,13 @@ zmq::xsub_t::xsub_t (class ctx_t *parent_, uint32_t tid_) : socket_base_t (parent_, tid_), fq (this), + dist (this), has_message (false), more (false) { options.type = ZMQ_XSUB; options.requires_in = true; - options.requires_out = false; + options.requires_out = true; zmq_msg_init (&message); } @@ -44,13 +45,15 @@ zmq::xsub_t::~xsub_t () void zmq::xsub_t::xattach_pipes (class reader_t *inpipe_, class writer_t *outpipe_, const blob_t &peer_identity_) { - zmq_assert (inpipe_ && !outpipe_); + zmq_assert (inpipe_ && outpipe_); fq.attach (inpipe_); + dist.attach (outpipe_); } void zmq::xsub_t::process_term (int linger_) { fq.terminate (); + dist.terminate (); socket_base_t::process_term (linger_); } -- cgit v1.2.3