diff options
Diffstat (limited to 'gr-zeromq/include/gnuradio/zeromq/pub_sink.h')
-rw-r--r-- | gr-zeromq/include/gnuradio/zeromq/pub_sink.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gr-zeromq/include/gnuradio/zeromq/pub_sink.h b/gr-zeromq/include/gnuradio/zeromq/pub_sink.h index e8871c22ac..e87c5522f9 100644 --- a/gr-zeromq/include/gnuradio/zeromq/pub_sink.h +++ b/gr-zeromq/include/gnuradio/zeromq/pub_sink.h @@ -53,9 +53,10 @@ namespace gr { * \param address ZMQ socket address specifier. * \param timeout Receive timeout in seconds, default is 100ms, 1us increments. * \param pass_tags Whether sink will serialize and pass tags over the link. + * \param hwm High Watermark to configure the socket to (-1 => zmq's default) */ static sptr make(size_t itemsize, size_t vlen, char *address, - int timeout=100, bool pass_tags=false); + int timeout=100, bool pass_tags=false, int hwm=-1); }; } // namespace zeromq |