xreq.hpp 1.75 KB
Newer Older
1
/*
2 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 22 23 24 25
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __ZMQ_XREQ_HPP_INCLUDED__
#define __ZMQ_XREQ_HPP_INCLUDED__

#include "socket_base.hpp"
26 27
#include "fq.hpp"
#include "lb.hpp"
28 29 30 31

namespace zmq
{

32
    class xreq_t :
33
        public socket_base_t
34 35 36
    {
    public:

Martin Sustrik's avatar
Martin Sustrik committed
37
        xreq_t (class ctx_t *parent_, uint32_t tid_);
38 39
        ~xreq_t ();

40 41
    protected:

42
        //  Overloads of functions from socket_base_t.
43
        void xattach_pipe (class pipe_t *pipe_);
44 45
        int xsend (class msg_t *msg_, int flags_);
        int xrecv (class msg_t *msg_, int flags_);
46 47
        bool xhas_in ();
        bool xhas_out ();
48 49 50
        void xread_activated (class pipe_t *pipe_);
        void xwrite_activated (class pipe_t *pipe_);
        void xterminated (class pipe_t *pipe_);
51 52 53

    private:

54 55 56 57 58
        //  Messages are fair-queued from inbound pipes. And load-balanced to
        //  the outbound pipes.
        fq_t fq;
        lb_t lb;

59
        xreq_t (const xreq_t&);
60
        const xreq_t &operator = (const xreq_t&);
61 62 63 64 65
    };

}

#endif