summaryrefslogtreecommitdiff
path: root/src/pull.hpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-09-18 07:37:36 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-09-18 07:37:36 +0200
commit4c6d07d3668558d910c9b1d19d52ccdeacc90574 (patch)
tree3530c8b03e9b475165d8bb3cf2eb425f5bfdd45e /src/pull.hpp
parentfb6ce536d96c82e8f4378a87a5d59aefcc57a96d (diff)
single term ack counting mechanism for every socket (no separate mechanisms for fq_t and lb_t)
Diffstat (limited to 'src/pull.hpp')
-rw-r--r--src/pull.hpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/pull.hpp b/src/pull.hpp
index 997eebf..1b53e3b 100644
--- a/src/pull.hpp
+++ b/src/pull.hpp
@@ -20,14 +20,13 @@
#ifndef __ZMQ_PULL_HPP_INCLUDED__
#define __ZMQ_PULL_HPP_INCLUDED__
-#include "i_terminate_events.hpp"
#include "socket_base.hpp"
#include "fq.hpp"
namespace zmq
{
- class pull_t : public socket_base_t, public i_terminate_events
+ class pull_t : public socket_base_t
{
public:
@@ -44,9 +43,6 @@ namespace zmq
private:
- // i_terminate_events interface implementation.
- void terminated ();
-
// Hook into the termination process.
void process_term ();