GNU Radio Manual and C++ API Reference
3.8.1.0
The Free & Open Software Radio Ecosystem
rep_sink.h
Go to the documentation of this file.
1
/* -*- c++ -*- */
2
/*
3
* Copyright 2013,2014 Free Software Foundation, Inc.
4
*
5
* This file is part of GNU Radio.
6
*
7
* This is free software; you can redistribute it and/or modify
8
* it under the terms of the GNU General Public License as published by
9
* the Free Software Foundation; either version 3, or (at your option)
10
* any later version.
11
*
12
* This software is distributed in the hope that it will be useful,
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
* GNU General Public License for more details.
16
*
17
* You should have received a copy of the GNU General Public License
18
* along with this software; see the file COPYING. If not, write to
19
* the Free Software Foundation, Inc., 51 Franklin Street,
20
* Boston, MA 02110-1301, USA.
21
*/
22
23
#ifndef INCLUDED_ZEROMQ_REP_SINK_H
24
#define INCLUDED_ZEROMQ_REP_SINK_H
25
26
#include <
gnuradio/sync_block.h
>
27
#include <
gnuradio/zeromq/api.h
>
28
29
namespace
gr
{
30
namespace
zeromq {
31
32
/*!
33
* \brief Sink the contents of a stream to a ZMQ REP socket
34
* \ingroup zeromq
35
*
36
* \details
37
* This block acts a a streaming sink for a GNU Radio flowgraph
38
* and writes its contents to a ZMQ REP socket. A REP socket will
39
* only send its contents to an attached REQ socket when it
40
* requests items.
41
*/
42
class
ZEROMQ_API
rep_sink
:
virtual
public
gr::sync_block
43
{
44
public
:
45
typedef
boost::shared_ptr<rep_sink>
sptr
;
46
47
/*!
48
* \brief Return a shared_ptr to a new instance of zeromq::rep_sink.
49
*
50
* \param itemsize Size of a stream item in bytes.
51
* \param vlen Vector length of the input items. Note that one vector is one item.
52
* \param address ZMQ socket address specifier.
53
* \param timeout Receive timeout in milliseconds, default is 100ms, 1us increments.
54
* \param pass_tags Whether sink will serialize and pass tags over the link.
55
* \param hwm High Watermark to configure the socket to (-1 => zmq's default)
56
*/
57
static
sptr
make(
size_t
itemsize
,
58
size_t
vlen,
59
char
* address,
60
int
timeout = 100,
61
bool
pass_tags =
false
,
62
int
hwm = -1);
63
64
/*!
65
* \brief Return a std::string of ZMQ_LAST_ENDPOINT from the underlying ZMQ socket.
66
*/
67
virtual
std::string last_endpoint() = 0;
68
};
69
70
}
// namespace zeromq
71
}
// namespace gr
72
73
#endif
/* INCLUDED_ZEROMQ_REP_SINK_H */
gr::blocks::pdu::itemsize
BLOCKS_API size_t itemsize(vector_type type)
api.h
ZEROMQ_API
#define ZEROMQ_API
Definition:
gr-zeromq/include/gnuradio/zeromq/api.h:30
gr::zeromq::rep_sink::sptr
boost::shared_ptr< rep_sink > sptr
Definition:
rep_sink.h:45
gr::sync_block
synchronous 1:1 input to output with history
Definition:
sync_block.h:37
sync_block.h
gr::zeromq::rep_sink
Sink the contents of a stream to a ZMQ REP socket.
Definition:
rep_sink.h:42
gr
GNU Radio logging wrapper for log4cpp library (C++ port of log4j)
Definition:
basic_block.h:43
gr-zeromq
include
gnuradio
zeromq
rep_sink.h
Generated by
1.8.16