blob: c62cc4c50e76ffeeec8cef65a4720c715c5c269f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/* -*- c++ -*- */
/*
* Copyright 2013,2014 Free Software Foundation, Inc.
*
* This file is part of GNU Radio.
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_ZEROMQ_PULL_MSG_SOURCE_H
#define INCLUDED_ZEROMQ_PULL_MSG_SOURCE_H
#include <gnuradio/block.h>
#include <gnuradio/zeromq/api.h>
namespace gr {
namespace zeromq {
/*!
* \brief Receive messages on ZMQ PULL socket and output async messages
* \ingroup zeromq
*
* \details
* This block will connect to a ZMQ PUSH socket, then convert
* received messages to outgoing async messages.
*/
class ZEROMQ_API pull_msg_source : virtual public gr::block
{
public:
typedef boost::shared_ptr<pull_msg_source> sptr;
/*!
* \brief Return a shared_ptr to a new instance of gr::zeromq::pull_msg_source.
*
* \param address ZMQ socket address specifier
* \param timeout Receive timeout in milliseconds, default is 100ms, 1us increments
*
*/
static sptr make(char* address, int timeout = 100);
/*!
* \brief Return a std::string of ZMQ_LAST_ENDPOINT from the underlying ZMQ socket.
*/
virtual std::string last_endpoint() = 0;
};
} // namespace zeromq
} // namespace gr
#endif /* INCLUDED_ZEROMQ_PULL_MSG_SOURCE_H */
|