sub.hpp 1.75 KB
Newer Older
1
/*
Martin Sustrik's avatar
Martin Sustrik committed
2
    Copyright (c) 2009-2011 250bpm s.r.o.
3 4
    Copyright (c) 2007-2011 iMatix Corporation
    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
    class sub_t : public xsub_t
31 32 33
    {
    public:

Martin Sustrik's avatar
Martin Sustrik committed
34
        sub_t (class ctx_t *parent_, uint32_t tid_);
35 36
        ~sub_t ();

37 38 39
    protected:

        int xsetsockopt (int option_, const void *optval_, size_t optvallen_);
40
        int xsend (class msg_t *msg_, int flags_);
41
        bool xhas_out ();
42

43 44
    private:

45
        sub_t (const sub_t&);
46
        const sub_t &operator = (const sub_t&);
47 48
    };

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
    class sub_session_t : public xsub_session_t
    {
    public:

        sub_session_t (class io_thread_t *io_thread_, bool connect_,
            class socket_base_t *socket_, const options_t &options_,
            const char *protocol_, const char *address_);
        ~sub_session_t ();

    private:

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

64 65 66
}

#endif