i_engine.hpp 1.71 KB
Newer Older
1
/*
Martin Sustrik's avatar
Martin Sustrik committed
2
    Copyright (c) 2009-2011 250bpm s.r.o.
3
    Copyright (c) 2007-2009 iMatix Corporation
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 22 23 24 25 26 27
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __ZMQ_I_ENGINE_HPP_INCLUDED__
#define __ZMQ_I_ENGINE_HPP_INCLUDED__

namespace zmq
{

28 29
    class io_thread_t;

30 31
    //  Abstract interface to be implemented by various engines.

32 33 34 35 36
    struct i_engine
    {
        virtual ~i_engine () {}

        //  Plug the engine to the session.
37
        virtual void plug (zmq::io_thread_t *io_thread_,
38
            class session_base_t *session_) = 0;
39

40
        //  Terminate and deallocate the engine. Note that 'detached'
41
        //  events are not fired on termination.
42 43
        virtual void terminate () = 0;

44 45
        //  This method is called by the session to signalise that more
        //  messages can be written to the pipe.
46 47 48 49 50
        virtual void activate_in () = 0;

        //  This method is called by the session to signalise that there
        //  are messages to send available.
        virtual void activate_out () = 0;
51 52 53 54 55
    };

}

#endif