~ubuntu-branches/ubuntu/saucy/zeromq3/saucy

« back to all changes in this revision

Viewing changes to src/pull.hpp

  • Committer: Package Import Robot
  • Author(s): Alessandro Ghedini
  • Date: 2012-06-04 21:21:09 UTC
  • Revision ID: package-import@ubuntu.com-20120604212109-b7b3m0rn21o8oo2q
Tags: upstream-3.1.0~beta+dfsg
ImportĀ upstreamĀ versionĀ 3.1.0~beta+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    Copyright (c) 2009-2011 250bpm s.r.o.
 
3
    Copyright (c) 2007-2010 iMatix Corporation
 
4
    Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
 
5
 
 
6
    This file is part of 0MQ.
 
7
 
 
8
    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
    the Free Software Foundation; either version 3 of the License, or
 
11
    (at your option) any later version.
 
12
 
 
13
    0MQ is distributed in the hope that it will be useful,
 
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
    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
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
20
*/
 
21
 
 
22
#ifndef __ZMQ_PULL_HPP_INCLUDED__
 
23
#define __ZMQ_PULL_HPP_INCLUDED__
 
24
 
 
25
#include "socket_base.hpp"
 
26
#include "session_base.hpp"
 
27
#include "fq.hpp"
 
28
 
 
29
namespace zmq
 
30
{
 
31
 
 
32
    class ctx_t;
 
33
    class pipe_t;
 
34
    class msg_t;
 
35
    class io_thread_t;
 
36
 
 
37
    class pull_t :
 
38
        public socket_base_t
 
39
    {
 
40
    public:
 
41
 
 
42
        pull_t (zmq::ctx_t *parent_, uint32_t tid_);
 
43
        ~pull_t ();
 
44
 
 
45
    protected:
 
46
 
 
47
        //  Overloads of functions from socket_base_t.
 
48
        void xattach_pipe (zmq::pipe_t *pipe_);
 
49
        int xrecv (zmq::msg_t *msg_, int flags_);
 
50
        bool xhas_in ();
 
51
        void xread_activated (zmq::pipe_t *pipe_);
 
52
        void xterminated (zmq::pipe_t *pipe_);
 
53
 
 
54
    private:
 
55
 
 
56
        //  Fair queueing object for inbound pipes.
 
57
        fq_t fq;
 
58
 
 
59
        pull_t (const pull_t&);
 
60
        const pull_t &operator = (const pull_t&);
 
61
 
 
62
    };
 
63
 
 
64
    class pull_session_t : public session_base_t
 
65
    {
 
66
    public:
 
67
 
 
68
        pull_session_t (zmq::io_thread_t *io_thread_, bool connect_,
 
69
            socket_base_t *socket_, const options_t &options_,
 
70
            const char *protocol_, const char *address_);
 
71
        ~pull_session_t ();
 
72
 
 
73
    private:
 
74
 
 
75
        pull_session_t (const pull_session_t&);
 
76
        const pull_session_t &operator = (const pull_session_t&);
 
77
    };
 
78
 
 
79
}
 
80
 
 
81
#endif