summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-09-19 08:39:53 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-09-19 08:39:53 +0200
commit5153b6368be58d0fcaea262463a3fc08ea658f78 (patch)
treecab6fe877d9e90ee517425b5f4778ce5cdd73175 /src
parent4c6d07d3668558d910c9b1d19d52ccdeacc90574 (diff)
obsolete 'active' flag removed from session_t
Diffstat (limited to 'src')
-rw-r--r--src/session.cpp11
-rw-r--r--src/session.hpp3
2 files changed, 3 insertions, 11 deletions
diff --git a/src/session.cpp b/src/session.cpp
index eb23eee..eb8967a 100644
--- a/src/session.cpp
+++ b/src/session.cpp
@@ -31,7 +31,6 @@ zmq::session_t::session_t (class io_thread_t *io_thread_,
options (options_),
in_pipe (NULL),
incomplete_in (false),
- active (true),
out_pipe (NULL),
engine (NULL),
socket (socket_),
@@ -60,13 +59,11 @@ void zmq::session_t::terminate ()
bool zmq::session_t::read (::zmq_msg_t *msg_)
{
- if (!in_pipe || !active)
+ if (!in_pipe)
return false;
- if (!in_pipe->read (msg_)) {
- active = false;
+ if (!in_pipe->read (msg_))
return false;
- }
incomplete_in = msg_->flags & ZMQ_MSG_MORE;
return true;
@@ -117,7 +114,6 @@ void zmq::session_t::attach_pipes (class reader_t *inpipe_,
if (inpipe_) {
zmq_assert (!in_pipe);
in_pipe = inpipe_;
- active = true;
in_pipe->set_event_sink (this);
}
@@ -133,7 +129,6 @@ void zmq::session_t::attach_pipes (class reader_t *inpipe_,
void zmq::session_t::terminated (reader_t *pipe_)
{
- active = false;
in_pipe = NULL;
finalise ();
}
@@ -147,7 +142,7 @@ void zmq::session_t::terminated (writer_t *pipe_)
void zmq::session_t::activated (reader_t *pipe_)
{
zmq_assert (in_pipe == pipe_);
- active = true;
+
if (engine)
engine->activate_out ();
}
diff --git a/src/session.hpp b/src/session.hpp
index 38cf317..ff1e87b 100644
--- a/src/session.hpp
+++ b/src/session.hpp
@@ -104,9 +104,6 @@ namespace zmq
// is still in the in pipe.
bool incomplete_in;
- // If true, in_pipe is active. Otherwise there are no messages to get.
- bool active;
-
// Outbound pipe, i.e. one the socket is sending messages to.
class writer_t *out_pipe;