push.cpp 1.47 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
3 4 5 6

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
7
    the terms of the GNU Lesser General Public License as published by
8 9 10 11 12 13
    the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.

    0MQ is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
    GNU Lesser General Public License for more details.
15

16
    You should have received a copy of the GNU Lesser General Public License
17 18 19
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

20
#include "push.hpp"
21
#include "pipe.hpp"
22 23
#include "err.hpp"
#include "msg.hpp"
24

25 26
zmq::push_t::push_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
    socket_base_t (parent_, tid_, sid_)
27
{
28
    options.type = ZMQ_PUSH;
29 30
}

31
zmq::push_t::~push_t ()
32 33 34
{
}

35
void zmq::push_t::xattach_pipe (pipe_t *pipe_, bool subscribe_to_all_)
36
{
37 38
    // subscribe_to_all_ is unused
    (void)subscribe_to_all_;
39

40 41 42 43
    zmq_assert (pipe_);
    lb.attach (pipe_);
}

44
void zmq::push_t::xwrite_activated (pipe_t *pipe_)
45 46 47 48
{
    lb.activated (pipe_);
}

49
void zmq::push_t::xpipe_terminated (pipe_t *pipe_)
50
{
51
    lb.pipe_terminated (pipe_);
52 53
}

54
int zmq::push_t::xsend (msg_t *msg_)
55
{
56
    return lb.send (msg_);
57 58
}

59
bool zmq::push_t::xhas_out ()
60
{
61
    return lb.has_out ();
62
}