summaryrefslogtreecommitdiff
path: root/src/object.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2011-05-22 17:26:53 +0200
committerMartin Sustrik <sustrik@250bpm.com>2011-05-22 17:26:53 +0200
commitacf0b0e515515e51ad32ba7a2d147ce703579478 (patch)
treed2032009cf46c23aa0f677c2216914f718ab968a /src/object.hpp
parent9e6b39925603f9e64db08c469bd628d7ef9465de (diff)
Introduces bi-directional pipes
So far, there was a pair of unidirectional pipes between a socket and a session (or an inproc peer). This resulted in complex problems with half-closed states and tracking which inpipe corresponds to which outpipe. This patch doesn't add any functionality in itself, but is essential for further work on features like subscription forwarding. Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/object.hpp')
-rw-r--r--src/object.hpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/object.hpp b/src/object.hpp
index 0f5e61b..0f47670 100644
--- a/src/object.hpp
+++ b/src/object.hpp
@@ -66,14 +66,13 @@ namespace zmq
void send_attach (class session_t *destination_,
struct i_engine *engine_, const blob_t &peer_identity_,
bool inc_seqnum_ = true);
- void send_bind (class own_t *destination_,
- class reader_t *in_pipe_, class writer_t *out_pipe_,
+ void send_bind (class own_t *destination_, class pipe_t *pipe_,
const blob_t &peer_identity_, bool inc_seqnum_ = true);
- void send_activate_reader (class reader_t *destination_);
- void send_activate_writer (class writer_t *destination_,
+ void send_activate_read (class pipe_t *destination_);
+ void send_activate_write (class pipe_t *destination_,
uint64_t msgs_read_);
- void send_pipe_term (class writer_t *destination_);
- void send_pipe_term_ack (class reader_t *destination_);
+ void send_pipe_term (class pipe_t *destination_);
+ void send_pipe_term_ack (class pipe_t *destination_);
void send_term_req (class own_t *destination_,
class own_t *object_);
void send_term (class own_t *destination_, int linger_);
@@ -89,10 +88,10 @@ namespace zmq
virtual void process_own (class own_t *object_);
virtual void process_attach (struct i_engine *engine_,
const blob_t &peer_identity_);
- virtual void process_bind (class reader_t *in_pipe_,
- class writer_t *out_pipe_, const blob_t &peer_identity_);
- virtual void process_activate_reader ();
- virtual void process_activate_writer (uint64_t msgs_read_);
+ virtual void process_bind (class pipe_t *pipe_,
+ const blob_t &peer_identity_);
+ virtual void process_activate_read ();
+ virtual void process_activate_write (uint64_t msgs_read_);
virtual void process_pipe_term ();
virtual void process_pipe_term_ack ();
virtual void process_term_req (class own_t *object_);