pull.cpp 1.55 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 "pull.hpp"
21
#include "err.hpp"
22
#include "msg.hpp"
23
#include "pipe.hpp"
24

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

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

35
void zmq::pull_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_);
    fq.attach (pipe_);
}

44
void zmq::pull_t::xread_activated (pipe_t *pipe_)
45 46 47 48
{
    fq.activated (pipe_);
}

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

54
int zmq::pull_t::xrecv (msg_t *msg_)
55
{
56
    return fq.recv (msg_);
57 58
}

59
bool zmq::pull_t::xhas_in ()
60
{
61
    return fq.has_in ();
62
}
63 64 65 66 67

zmq::blob_t zmq::pull_t::get_credential () const
{
    return fq.get_credential ();
}