mirror of
https://github.com/zeromq/libzmq.git
synced 2025-01-19 08:46:44 +01:00
da31917f4f
Relicense permission collected from all relevant authors as tallied at: https://github.com/rlenferink/libzmq-relicense/blob/master/checklist.md The relicense grants are collected under RELICENSE/ and will be moved to the above repository in a later commit. Fixes https://github.com/zeromq/libzmq/issues/2376
42 lines
876 B
C++
42 lines
876 B
C++
/* SPDX-License-Identifier: MPL-2.0 */
|
|
|
|
#ifndef __ZMQ_PULL_HPP_INCLUDED__
|
|
#define __ZMQ_PULL_HPP_INCLUDED__
|
|
|
|
#include "socket_base.hpp"
|
|
#include "session_base.hpp"
|
|
#include "fq.hpp"
|
|
|
|
namespace zmq
|
|
{
|
|
class ctx_t;
|
|
class pipe_t;
|
|
class msg_t;
|
|
class io_thread_t;
|
|
|
|
class pull_t ZMQ_FINAL : public socket_base_t
|
|
{
|
|
public:
|
|
pull_t (zmq::ctx_t *parent_, uint32_t tid_, int sid_);
|
|
~pull_t ();
|
|
|
|
protected:
|
|
// Overrides of functions from socket_base_t.
|
|
void xattach_pipe (zmq::pipe_t *pipe_,
|
|
bool subscribe_to_all_,
|
|
bool locally_initiated_);
|
|
int xrecv (zmq::msg_t *msg_);
|
|
bool xhas_in ();
|
|
void xread_activated (zmq::pipe_t *pipe_);
|
|
void xpipe_terminated (zmq::pipe_t *pipe_);
|
|
|
|
private:
|
|
// Fair queueing object for inbound pipes.
|
|
fq_t _fq;
|
|
|
|
ZMQ_NON_COPYABLE_NOR_MOVABLE (pull_t)
|
|
};
|
|
}
|
|
|
|
#endif
|