summaryrefslogtreecommitdiff
path: root/src/xpub.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xpub.hpp')
-rw-r--r--src/xpub.hpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/xpub.hpp b/src/xpub.hpp
index 48efd17..8a6ff73 100644
--- a/src/xpub.hpp
+++ b/src/xpub.hpp
@@ -23,15 +23,13 @@
#include "socket_base.hpp"
#include "array.hpp"
-#include "pipe.hpp"
#include "dist.hpp"
namespace zmq
{
class xpub_t :
- public socket_base_t,
- public i_pipe_events
+ public socket_base_t
{
public:
@@ -44,17 +42,11 @@ namespace zmq
bool xhas_out ();
int xrecv (class msg_t *msg_, int flags_);
bool xhas_in ();
+ void xwrite_activated (class pipe_t *pipe_);
+ void xterminated (class pipe_t *pipe_);
private:
- // i_pipe_events interface implementation.
- void read_activated (pipe_t *pipe_);
- void write_activated (pipe_t *pipe_);
- void terminated (pipe_t *pipe_);
-
- // Hook into the termination process.
- void process_term (int linger_);
-
// Distributor of messages holding the list of outbound pipes.
dist_t dist;