sub.hpp 1.82 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2012 iMatix Corporation
Martin Sustrik's avatar
Martin Sustrik committed
3
    Copyright (c) 2009-2011 250bpm s.r.o.
4
    Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
5 6 7 8

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
9
    the terms of the GNU Lesser General Public License as published by
10 11 12 13 14 15
    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
16
    GNU Lesser General Public License for more details.
17

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

22 23
#ifndef __ZMQ_SUB_HPP_INCLUDED__
#define __ZMQ_SUB_HPP_INCLUDED__
24

25
#include "xsub.hpp"
26 27 28 29

namespace zmq
{

30 31 32 33 34
    class ctx_t;
    class msg_t;
    class io_thread_t;
    class socket_base_t;

35
    class sub_t : public xsub_t
36 37 38
    {
    public:

39
        sub_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
40 41
        ~sub_t ();

42 43 44
    protected:

        int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
45
        int xsend (zmq::msg_t *msg_, int flags_);
46
        bool xhas_out ();
47

48 49
    private:

50
        sub_t (const sub_t&);
51
        const sub_t &operator = (const sub_t&);
52 53
    };

54 55 56 57
    class sub_session_t : public xsub_session_t
    {
    public:

58 59
        sub_session_t (zmq::io_thread_t *io_thread_, bool connect_,
            zmq::socket_base_t *socket_, const options_t &options_,
60
            const address_t *addr_);
61 62 63 64 65 66 67 68
        ~sub_session_t ();

    private:

        sub_session_t (const sub_session_t&);
        const sub_session_t &operator = (const sub_session_t&);
    };

69 70 71
}

#endif