summaryrefslogtreecommitdiff
path: root/src/xrep.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-08-11 14:09:56 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-08-25 15:39:20 +0200
commitd13933bc62fce71b5a58118020e0dd3776e79aa9 (patch)
tree6586d5b9cc637dbf8acae4b32d24da9c8e046014 /src/xrep.hpp
parentee1f1af0091d9bdffa0e5ce1783da925b3cd7e56 (diff)
I/O object hierarchy implemented
Diffstat (limited to 'src/xrep.hpp')
-rw-r--r--src/xrep.hpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/xrep.hpp b/src/xrep.hpp
index 1c240ff..b16682d 100644
--- a/src/xrep.hpp
+++ b/src/xrep.hpp
@@ -44,13 +44,16 @@ namespace zmq
// Overloads of functions from socket_base_t.
void xattach_pipes (reader_t *inpipe_, writer_t *outpipe_,
const blob_t &peer_identity_);
- void xterm_pipes ();
- bool xhas_pipes ();
int xsend (zmq_msg_t *msg_, int flags_);
int xrecv (zmq_msg_t *msg_, int flags_);
bool xhas_in ();
bool xhas_out ();
+ private:
+
+ // Hook into the termination process.
+ void process_term ();
+
// i_reader_events interface implementation.
void activated (reader_t *pipe_);
void terminated (reader_t *pipe_);
@@ -59,8 +62,6 @@ namespace zmq
void activated (writer_t *pipe_);
void terminated (writer_t *pipe_);
- private:
-
struct inpipe_t
{
class reader_t *reader;
@@ -100,6 +101,9 @@ namespace zmq
// If true, more outgoing message parts are expected.
bool more_out;
+ // If true, termination process is already underway.
+ bool terminating;
+
xrep_t (const xrep_t&);
void operator = (const xrep_t&);
};