GNU Radio 3.6.5 C++ API
|
Accepts messages and inserts them into a message queue, then notifies subclass gr_basic_block there is a message pending. More...
#include <gr_msg_accepter.h>
Public Member Functions | |
gr_msg_accepter () | |
~gr_msg_accepter () | |
void | post (pmt::pmt_t which_port, pmt::pmt_t msg) |
send msg to msg_accepter on port which_port |
Accepts messages and inserts them into a message queue, then notifies subclass gr_basic_block there is a message pending.
gr_msg_accepter::gr_msg_accepter | ( | ) |
gr_msg_accepter::~gr_msg_accepter | ( | ) |
void gr_msg_accepter::post | ( | pmt::pmt_t | which_port, |
pmt::pmt_t | msg | ||
) | [virtual] |
send msg
to msg_accepter
on port which_port
Sending a message is an asynchronous operation. The post
call will not wait for the message either to arrive at the destination or to be received.
Implements gruel::msg_accepter.