i_engine.hpp 1.67 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
3 4 5 6

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
7
    the terms of the GNU Lesser General Public License as published by
8 9 10 11 12 13
    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
14
    GNU Lesser General Public License for more details.
15

16
    You should have received a copy of the GNU Lesser General Public License
17 18 19 20 21 22 23 24 25
    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
{

26 27
    class io_thread_t;

28 29
    //  Abstract interface to be implemented by various engines.

30 31 32 33 34
    struct i_engine
    {
        virtual ~i_engine () {}

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

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

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

        //  This method is called by the session to signalise that there
        //  are messages to send available.
48
        virtual void restart_output () = 0;
49 50

        virtual void zap_msg_available () = 0;
51 52 53 54 55
    };

}

#endif