summaryrefslogtreecommitdiff
path: root/src/fq.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fq.hpp')
-rw-r--r--src/fq.hpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/fq.hpp b/src/fq.hpp
index bbe1b59..106e978 100644
--- a/src/fq.hpp
+++ b/src/fq.hpp
@@ -35,18 +35,16 @@ namespace zmq
{
public:
- fq_t (class own_t *sink_);
+ fq_t ();
~fq_t ();
void attach (pipe_t *pipe_);
- void terminate ();
+ void activated (pipe_t *pipe_);
+ void terminated (pipe_t *pipe_);
int recv (msg_t *msg_, int flags_);
bool has_in ();
- void activated (pipe_t *pipe_);
- void terminated (pipe_t *pipe_);
-
private:
// Inbound pipes.
@@ -64,12 +62,6 @@ namespace zmq
// there are following parts still waiting in the current pipe.
bool more;
- // Object to send events to.
- class own_t *sink;
-
- // If true, termination process is already underway.
- bool terminating;
-
fq_t (const fq_t&);
const fq_t &operator = (const fq_t&);
};