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 : public socket_base_t
33 34 35
    {
    public:

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

39 40
    protected:

41
        //  Overloads of functions from socket_base_t.
42 43
        void xattach_pipes (class reader_t *inpipe_, class writer_t *outpipe_,
            const blob_t &peer_identity_);
44 45 46 47 48 49 50
        int xsend (zmq_msg_t *msg_, int flags_);
        int xrecv (zmq_msg_t *msg_, int flags_);
        bool xhas_in ();
        bool xhas_out ();

    private:

51
        //  Hook into the termination process.
52
        void process_term (int linger_);
53

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