summaryrefslogtreecommitdiff
path: root/src/fq.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/fq.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/fq.hpp')
-rw-r--r--src/fq.hpp12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/fq.hpp b/src/fq.hpp
index c35d458..bbe1b59 100644
--- a/src/fq.hpp
+++ b/src/fq.hpp
@@ -31,28 +31,26 @@ namespace zmq
// Class manages a set of inbound pipes. On receive it performs fair
// queueing (RFC970) so that senders gone berserk won't cause denial of
// service for decent senders.
- class fq_t : public i_reader_events
+ class fq_t
{
public:
fq_t (class own_t *sink_);
~fq_t ();
- void attach (reader_t *pipe_);
+ void attach (pipe_t *pipe_);
void terminate ();
int recv (msg_t *msg_, int flags_);
bool has_in ();
- // i_reader_events implementation.
- void activated (reader_t *pipe_);
- void terminated (reader_t *pipe_);
- void delimited (reader_t *pipe_);
+ void activated (pipe_t *pipe_);
+ void terminated (pipe_t *pipe_);
private:
// Inbound pipes.
- typedef array_t <reader_t> pipes_t;
+ typedef array_t <pipe_t, 1> pipes_t;
pipes_t pipes;
// Number of active pipes. All the active pipes are located at the