diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-01-12 13:19:48 -0800 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-01-12 13:19:48 -0800 |
commit | 3827ff325ef1bcdbeedb46b7b4efff4f897da0ae (patch) | |
tree | 1ff2d92f20d4635827fe06e672a39771d61422b1 /gr-zeromq/include/gnuradio | |
parent | c13049f2fbe51dcb6e655b11e172514a3fc085b4 (diff) |
zeromq: cleanup and convert pub_msg_sink to derive from gr::block
Diffstat (limited to 'gr-zeromq/include/gnuradio')
-rw-r--r-- | gr-zeromq/include/gnuradio/zeromq/pub_msg_sink.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gr-zeromq/include/gnuradio/zeromq/pub_msg_sink.h b/gr-zeromq/include/gnuradio/zeromq/pub_msg_sink.h index d626ddd147..ffcb47544f 100644 --- a/gr-zeromq/include/gnuradio/zeromq/pub_msg_sink.h +++ b/gr-zeromq/include/gnuradio/zeromq/pub_msg_sink.h @@ -30,17 +30,17 @@ namespace gr { namespace zeromq { /*! - * \brief Sink the contents of a stream to a ZMQ PUB socket + * \brief Sink the contents of a msg port to a ZMQ PUB socket * \ingroup zeromq * * \details - * This block acts a a streaming sink for a GNU Radio flowgraph - * and writes its contents to a ZMQ PUB socket. A PUB socket may - * have subscribers and will pass all incoming stream data to each + * This block acts a message port receiver and writes individual + * messages to a ZMQ PUB socket. A PUB socket may have + * subscribers and will pass all incoming messages to each * subscriber. Subscribers can be either another gr-zeromq source * block or a non-GNU Radio ZMQ socket. */ - class ZEROMQ_API pub_msg_sink : virtual public gr::sync_block + class ZEROMQ_API pub_msg_sink : virtual public gr::block { public: typedef boost::shared_ptr<pub_msg_sink> sptr; |